Quote:
Originally Posted by kud0gfx
Thx Vossi! i found another bug, and is related with a bbcode too...
https://vborg.vbsupport.ru/showthread.php?t=107985
the "sortable" script is not working, i think there is a problem with javascript's because the spoiler is the same.... sorry for disturbing ^^
|
Sorting where in the glossary do you mean? Sorting the entries or sorting the categories?
Quote:
Originally Posted by euludag
when Enabling Crosslinking, the error messages:
Warning: htmlentities() [function.htmlentities]: charset `ISO-8859-9' not supported, assuming iso-8859-1 in [path]/includes/functions_vbglossar.php on line 188
|
Hm, just open functions_vbglossar.php, in line 188 look for:
PHP Code:
$item['description'] = htmlentities($item['description'], ENT_COMPAT, "$stylevar[charset]" );
and change it to:
PHP Code:
$item['description'] = htmlentities($item['description']);
Does it work after the change?