
03-13-2015, 07:44 PM
|
|
|
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by BirdOPrey5
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
|
Thank you
|