Error front.func.inc.php on line 2875

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
tsp
Posts: 7
Joined: Wed 30. Mar 2005, 22:42

Error front.func.inc.php on line 2875

Post by tsp »

Hello

When I want to load the index.php in the phpwcms root I become a fatal error Message:

Fatal error: Call to undefined function: html_entity_decode() in c:\apache\htdocs\phpwcms\include\inc_front\front.func.inc.php on line 2875

I don't knew why I become this Error.. I have a new phpwcms installation and the setup process was successfull. The login works.

I did not made any change on the front.func.inc.php file.

Thank you for your help
kurt2000
Posts: 2
Joined: Wed 27. Apr 2005, 11:50

well, not perfect but it workz for me

Post by kurt2000 »

function html_entity_decode($string)
{
$trans = get_html_translation_table(HTML_ENTITIES);
$trans = array_flip($trans);
$contents= strtr($string, $trans);
return $contents;
}

//With kind regards
Post Reply