Fatal error: Call to undefined function: htmlspecialchars_decode() in /home/thewed/public_html/directory/utils/cat_add.php on line 42
Installation, updates, manuals and APIs.
Code, issues, development roadmap.
Custom job offers.
Send us your sales or general questions.
Try to put the following
function htmlspecialchars_decode($str)
{
$search = array('&', '"', '<', '>');
$replace = array('&', '"', '<', '>');
return str_replace($search, $replace, $str);
}
into util.php.
If it won't work, please contact our support team, they will help you to fix this problem.
Regards