Quote:
Originally Posted by kh99
My first thought is that I believe the censoring feature replaces the word with asterisks before it's saved in the database, so that you'd need to change how that works. Or maybe you could use a hook before the censoring to find the words and log them to a different table, then use that data somehow when a staff member displays a post.
|
I was thinking something like this, were this a vB 3.8.
includes/functions.php find:
HTML Code:
function censortext($text) {
global $enablecensor,$censorwords,$censorword,$censorchar;
Replace with:
HTML Code:
function censortext($text) {
global $enablecensor,$censorwords,$censorword,$censorchar,$bbuserinfo;
if(($bbuserinfo[usergroupid] == 5) or ($bbuserinfo[usergroupid] == 6) or ($bbuserinfo[usergroupid] == 7)){
$enablecensor = 0;
}
Then find
HTML Code:
$bbcode=str_replace("{", "{", $bbcode); // stop people posting replacements in their posts
return censortext($bbcode);
Replace with:
HTML Code:
$bbcode=str_replace("{", "{", $bbcode); // stop people posting replacements in their posts
return $bbcode;
But I have no idea the version 4 use of this.