With this snippet you can use html for word censor in posts
Requested by: Mike3396
Request topic: http://www.phpbb.com/community/viewtopi ... &t=2157114
ACP > Word Censor
Result
http://4seven.bplaced.net/forum/7test/v ... hp?f=2&t=3
Instruction
open
includes/functions_content.php
find
- Code: Select all
if (sizeof($censors))
{
return preg_replace($censors['match'], $censors['replace'], $text);
}
replace with
- Code: Select all
// Html replacement in word censor / 4seven / 2012
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);
}
}
// Html replacement in word censor / 4seven / 2012