Quote:
Originally Posted by jlaine
I applied that change - but it appears that disables checking of any forum on regular posts - as the censor is working on the forum I chose to disable it in - users posts are coming back censored now.
I don't mind the exclusion of the signature, so long as it's always globally censored - kinda freaked me out when something ended up visible in the general areas. 
|
Hmm I see what you mean. Well, he's a kind of fix, it'll censor sigs when they are edited (by a user, not through modcp or admincp but the code for that is the same just in a difference place), so it'll be impossible for users to put censored words in their sigs.
profile.php
find:
PHP Code:
else
{
$signature = trim($message);
}
add after that:
PHP Code:
require_once('./includes/functions_bbcodeparse.php');
$signature = fetch_censored_text($signature);