Quote:
Originally Posted by postcd
im getting error when i use: ISO-8859-2
Warning: htmlspecialchars() [function.htmlspecialchars]: charset `ISO-8859-2' not supported, assuming iso-8859-1 in [path]/includes/functions_bop_wordlinks.php on line 123
iso-8859-1 dont show-up links for me
|
im using ěščřž???? chars..
i found ISO-8859-
2 is not supported in htmlspecialchars() function:
http://php.net/manual/en/function.htmlspecialchars.php
Please any idea how to replace (
htmlentities?) that function or safelly skip it so this Word Links plugin works with that charset?
functions_bop_wordlinks.php CODE:
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));
iso-8859-1 dont show-up links for me