Quote:
Originally Posted by Oblivion Knight
Looking at the code (default on), I think some kind of else statement on the if condition below is needed:
Code:
if ($foruminfo['censor'] == 0)
{
$vbulletin->options['enablecensor'] = 0;
}
Try this (untested):
Code:
if ($foruminfo['censor'] == 0)
{
$vbulletin->options['enablecensor'] = 0;
} else {
$vbulletin->options['enablecensor'] = 1;
}
This would apply to any other modifications that use the censor I think.
|
Sorry, where do I find this code to modify??