Quote:
Originally Posted by Boofo
What did you change? It looks the same to me.
|
Changed
htmlnumericentities with
htmlspecialchars in both lines:
PHP Code:
$event['preview'] = htmlnumericentities(htmlentities (
In to
$event['preview'] = htmlspecialchars(htmlentities (
And
PHP Code:
$event['title'] = str_replace ('&', '&', htmlnumericentities(htmlentities ($event['title'], ENT_COMPAT, 'UTF-8')));
In to
$event['title'] = str_replace ('&', '&', htmlspecialchars(htmlentities ($event['title'], ENT_COMPAT, 'UTF-8')));