XML Parse Error entity "’"
-
Hello,
First time I just want to thank you for this extension ??
I found a small bug that make XML parse error with DOMDocument::loadXML()
Cause : I have a quote in category name (s’engager) and it generate &rsquote; entity
Solution :
In display.php file at line 91Replace
echo str_replace(” “, “ ”, wp_dropdown_categories(args));
with
$tmpCat = str_replace(” “, “ ”, wp_dropdown_categories(args));
echo str_replace(“’”, “’”, $tmpCat);Hope you integrate this fix in next release ??
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘XML Parse Error entity "’"’ is closed to new replies.