Page 1 of 1

search form error 1.3.3

Posted: Wed 9. May 2007, 12:02
by TI&OSM
Hello all,

I upgraded from 1.3.0 > 1.3.3.
Everything works fine, only the search form.
It works, only I get a couple of thousand times the next line;

Code: Select all

Warning: cannot yet handle MBCS in html_entity_decode()! in /var/www/vhosts/typography.nl/httpdocs/_phpwcms_133/include/inc_lib/general.inc.php on line 1246
This line refers to this line;

Code: Select all

	$text = html_entity_decode($text, ENT_QUOTES, PHPWCMS_CHARSET);
What's wrong?

Robert [TI&OSM]

Posted: Thu 10. May 2007, 08:59
by Oliver Georgi
please search forum - this is described!

Add missing @ in that line

Code: Select all

$text = @html_entity_decode($text, ENT_QUOTES, PHPWCMS_CHARSET);
Oliver