Quote:
Originally Posted by rinkrat
My shoutbox is now uncensored. How can I change it back to being censored? Is there a way to disable it globally till I get it right?
|
Change, in includes/functions_bbcodeparse.php (assuming this hack is applied):
PHP Code:
if ($forum['censor'])
{
$bbcode = fetch_censored_text($bbcode);
}
to:
PHP Code:
if ($forum['censor'] || empty($forum))
{
$bbcode = fetch_censored_text($bbcode);
}
which will then censor things that are parsed but where $forum is undefined, like in a shoutbox.