Quote:
Originally Posted by BirdOPrey5
try replacing htmlspecialchars with htmlentities in the code- the function should work the same way,
|
well as per
htmlentities() description, it do NOT support czech charsets (ISO 8859-2, Windows-1250, UTF-8)
only UTF-8, but im unsure why then links are not added to words when they contain some of ě?čř????? characters.. so there is no way to modiffy
Code:
// $bopfind = preg_quote (htmlspecialchars($bopfind));
define('CHARSET', 'ISO-8859-2');
define('REPLACE_FLAGS', ENT_COMPAT | ENT_XHTML);
$bopfind = preg_quote (htmlspecialchars($bopfind,REPLACE_FLAGS, CHARSET));
or any other part of the code so it work?