Quote:
Originally Posted by mariannet
I have the following error and I know it's because of my PHP version, but I have had it once before and then I could use a different term [than html_entity_decode]
to solve it, can't remember what - can you help?
Code:
Call to undefined function: html_entity_decode() in /home/xxx/xxx-www/includes/functions_itrader.php on line 22
|
Sorted and in case anyone else should need it:
Open /includes/functions_itrader.php
Go to line 17
On the line
before: function itrader_checkurl($dealurl)
Add:
Code:
function html_entity_decode($string)
{
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
$trans_tbl = array_flip($trans_tbl);
return strtr($string, $trans_tbl);
}