Bugfix
-
Hi. on line 708 (function cleanuptext)
return urldecode(str_replace(array("'", "%26"), array("“, “&”), urldecode($_string)));`should be
return urldecode(str_replace(array("'", "%26"), array("“, “&”), urldecode($_string)));`(replacing & with &)
It does not validate well with & .
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Bugfix’ is closed to new replies.