MyBB Community Forums

Full Version: Autocorrect?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
There seems to be a setting in MyBB that automatically corrects (c) to ©.

Where is this, and how do I turn it off?

[Case in point, it's also enabled on this forum. In order to get the first (c) to show correctly, I had to insert an empty tag pair.]
i think you cant off this!
./inc/class_parser.php

Removes lines 245 and 246.

		$standard_mycode['copy']['regex'] = "#\(c\)#i";
		$standard_mycode['copy']['replacement'] = "©";
Oh, it's in the parser!

Thanks.