Html replacement in word censorWith this snippet you can use html for word censor in posts
Requested by:
Mike3396Request topic:
http://www.phpbb.com/community/viewtopi ... &t=2157114ACP > Word Censor
Attachment:
banana_acp_word_censor.png [ 504.72 KiB | Viewed 2362 times ]
Result
Attachment:
banana_result.png [ 176.48 KiB | Viewed 2362 times ]
http://4seven.bplaced.net/forum/7test/v ... hp?f=2&t=3Instructionopen
includes/functions_content.php
find
Code:
if (sizeof($censors))
{
return preg_replace($censors['match'], $censors['replace'], $text);
}
replace with
Code:
if (sizeof($censors))
{
$script_name = pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME);
if($script_name == 'viewtopic')
{
return preg_replace($censors['match'], str_replace(array('<','"','>'), array('<','"','>'), $censors['replace']), $text);
}
else
{
$censors['replace'] = preg_replace('#<(.*?)>#is', '', $censors['replace']);
return preg_replace($censors['match'], $censors['replace'], $text);
}
}