How can I stop Syntext Highighting in MyBB with a mod
ZiNgA BuRgA Offline
Fag
*******
Posts: 3,357
Joined: Jan 2008
Post: #6
RE: How can I stop Syntext Highighting in MyBB with a mod
If you don't mind editing files, take a look at inc/class_parser.php, in particular, this part:

PHP Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
		// Replace MyCode if requested.
		if($this->options['allow_mycode'])
		{
			$message = $this->parse_mycode($message, $this->options);
		}
		
		// Parse Highlights
		if($this->options['highlight'])
		{
			$message = $this->highlight_message($message, $this->options['highlight']);
		}

		// Run plugin hooks
		$message = $plugins->run_hooks("parse_message", $message);


My Blog
01-18-2011 03:39 PM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
RE: How can I stop Syntext Highighting in MyBB with a mod - ZiNgA BuRgA - 01-18-2011 03:39 PM

 Standard Tools
Forum Jump: