Problem with popup showing in different coding (seems as unknown language

) fixed.
Edit
functions_vbglossar.php in
include folder :
1. Find
PHP Code:
function fetch_glossar_items()
{
global $vbulletin;
Replace with :
PHP Code:
function fetch_glossar_items()
{
global $vbulletin, $stylevar;
2. Find :
PHP Code:
$item['description'] = htmlentities($item['description']);
Replace with :
PHP Code:
$item['description'] = htmlentities($item['description'], ENT_COMPAT, "$stylevar[charset]" );
Done