MyBB Community Forums

Full Version: Report system Like vBulletin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey is there a mod that will post reported posts into a forum. Like with vbulletin.

Thank You
Can't understand this
If you want to go with the second option you will need to delve into the plugins code and change some things around. Firstly you will need to change it's compatibility indicator you can do this by changing:
PHP Code:
"compatibility" => "16*",
to
PHP Code:
"compatibility" => "18*",
which is inside the function 'pluginname_info'.

If the compatibility indicator isn't there or is just '*' then your plugin will work fine without changes so long as you aren't having problems with mod_security. (See below if you are).

Will you tell me in which file I have to change the setting.
it has a single php file reportthread.php which can be modified and uploaded to the plugins folder (~/inc/plugins)
Great. Its working fine.