No not remove - I have forgotten to put the new function also in the setup routine. Put this into the file "setup.php" at the end but before ?>
Code: Select all
function html_specialchars($h="") {
//used to replace the htmlspecialchars original php function
//not compatible with many internation chars like turkish, polish
$h = preg_replace("/&(?!#[0-9]+;)/s", '&', $h );
$h = str_replace( "<", "<" , $h );
$h = str_replace( ">", ">" , $h );
$h = str_replace( '"', """, $h );
return $h;
}
I will post a little patch file.
No patch - I have updated the complete package. If you have downloaded the non updated package please change the setup.php
Oliver