Quote:
Originally Posted by john7911
|
OK, htmlentities is not going to work then.
Create a new plugin on the global_bootstrap_init_start hook with an execution order of 3.
Code:
Code:
function bop5htmlspecialchars ($t)
{
$find[0] = '<';
$find[1] = '>';
$replace[0] = '<';
$replace[1] = '>';
return str_replace ($find, $replace, $t);
}
Then in the other plugin replace
htmlentities and replace with
bop5htmlspecialchars