MyBB Community Forums

Full Version: copyright symbol issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I run a political forum so a lot of what we posts has to do with legislation and such so when someone posts statues, it's creating a copyright symbol when the letter C is wrapped in parenthesis.

you can see in this thread:
http://paforliberty.com/forum/thread-uni...808#pid808

©

It's probably because of the MyBB post parser.
(2011-01-13, 09:28 PM)Shukaku Wrote: [ -> ]©

It's probably because of the MyBB post parser.

is there a way to fix that?
inc/class_parser.php

Around line 245-246 comment out or remove these 2 lines

		$standard_mycode['copy']['regex'] = "#\(c\)#i";
		$standard_mycode['copy']['replacement'] = "©";
(2011-01-14, 12:18 AM)- G33K - Wrote: [ -> ]inc/class_parser.php

Around line 245-246 comment out or remove these 2 lines

		$standard_mycode['copy']['regex'] = "#\(c\)#i";
		$standard_mycode['copy']['replacement'] = "©";

thanks.