MyBB Community Forums

Full Version: Disable highlight on all threads.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.

I want to disable the highlight feature like:
example.com/mybb/showthread.php=7432981093312073?highlight="example"

?highlight="example"

How can I disable this feature?
Just a simple plugin which sets

$mybb->input['highlight'] = "";

at the start of showthread.php (hook showthread_start).

Or, if you don't mind changing core files, put that statement at the start of showthread.php, after the require_once statements.