ZenphotoCMS Forum
Fatal error : tag_suggest.php on line 28 - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Fatal error : tag_suggest.php on line 28 (/thread-3482.html)



Fatal error : tag_suggest.php on line 28 - flu - 2008-08-16

Hi,
I've just installed the brand new 1.2 version and I get this :
Fatal error: Call to undefined function: htmlspecialchars_decode() in /home/mysite/zenphoto/zp-core/plugins/tag_suggest.php on line 28

Do you have any ideas about this ?

Thanks.




Fatal error : tag_suggest.php on line 28 - krainbolt - 2008-08-16

Which page do you see this error on?




Fatal error : tag_suggest.php on line 28 - flu - 2008-08-16

Hi,
I see it on every page as soon as the Tag suggest plugin is enabled (using the default theme).




Fatal error : tag_suggest.php on line 28 - krainbolt - 2008-08-16

This should be fixed in tonights nightly build. For now, if you add the following code to functions.php it should fix the problem.

`if (!function_exists("htmlspecialchars_decode")) {

function htmlspecialchars_decode($string, $quote_style = ENT_COMPAT) {

    return strtr($string, array_flip(get_html_translation_table(HTML_SPECIALCHARS, $quote_style)));

}

}`




Fatal error : tag_suggest.php on line 28 - flu - 2008-08-16

Thank you Krainbolt, I'll try the next nightly.




Fatal error : tag_suggest.php on line 28 - flu - 2008-08-18

Ok, this is fixed (version [2222]).

Thank you.