X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fhtml%2Fhelpviewer.php;h=95d56caaaba07b2ec6a15b1f10842d6861e28b00;hb=630626c6abe0a2d649dd03221ac43dd4ed53b0c0;hp=0be42bbe6c461df88b8df59dbba692eba3ee5061;hpb=f7bd29eeb2f192eaa659b0cb7799506f4c1abf68;p=gosa.git diff --git a/gosa-core/html/helpviewer.php b/gosa-core/html/helpviewer.php index 0be42bbe6..95d56caaa 100644 --- a/gosa-core/html/helpviewer.php +++ b/gosa-core/html/helpviewer.php @@ -42,10 +42,9 @@ $ui= session::get('ui'); $config= session::get('config'); /* Language setup */ -if ($config->data['MAIN']['LANG'] == ""){ +$lang= $config->get_cfg_value("lang"); +if ($lang == ""){ $lang= get_browser_language(); -} else { - $lang= $config->data['MAIN']['LANG']; } $lang.=".UTF-8"; @@ -62,11 +61,7 @@ textdomain($domain); @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to"); $config= session::get('config'); -if (isset ($config->data['MAIN']['COMPILE'])){ - $smarty->compile_dir= $config->data['MAIN']['COMPILE']; -} else { - $smarty->compile_dir= '/var/spool/gosa/'; -} +$smarty->compile_dir= $config->get_cfg_value("compile", "/var/spool/gosa/"); $smarty->assign("title", "GOsa - "._("Help browser")); /* HELP management starts here ... @@ -142,7 +137,8 @@ if(session::is_set('current_class_for_help')){ }elseif(isset($_GET['plug'])){ /* This displays helpfiles depending on the current $_GET[plug] */ - $tmp = new pluglist(session::get('config'),get_userinfo()); + $ui= get_userinfo(); + $tmp = new pluglist(session::get('config'), $ui); $path = $tmp->get_path($_GET['plug']); $helpobject['currentplug'] = $path; $helpobject['file'] = "index.html";