X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=html%2Fhelpviewer.php;h=dbd868b47d4f2869d9365bf6f6b5828d41424ce1;hb=08638e58d2e029ef0745fae762f602065b436a1c;hp=d515328546dc2d6156f9bf35b8506f45daffc8af;hpb=e474b33288b761727d21e934b04402bf37786c1b;p=gosa.git diff --git a/html/helpviewer.php b/html/helpviewer.php index d51532854..dbd868b47 100644 --- a/html/helpviewer.php +++ b/html/helpviewer.php @@ -25,7 +25,9 @@ error_reporting(0); header("Content-type: text/html; charset=UTF-8"); + session_start(); +$ui= $_SESSION["ui"]; $config= $_SESSION['config']; /* If no config object is found in the session, abort help */ @@ -42,11 +44,8 @@ if ($config->data['MAIN']['LANG'] == ""){ $lang= $config->data['MAIN']['LANG']; } -if(isset($_SESSION['ui']->language)){ - $lang = $_SESSION['ui']->language; -} - $lang.=".UTF-8"; + putenv("LANGUAGE="); putenv("LANG=$lang"); setlocale(LC_ALL, $lang); @@ -113,7 +112,7 @@ if(isset($_SESSION['current_class_for_help'])){ /* If there is no entry in the xml file for this class, display an error message */ if($helpdir == ""){ - $smarty->assign("help_contents","

"._("There is no helpfile specified for this class."))."

"; + $smarty->assign("help_contents","

"._("There is no helpfile specified for this class"))."

"; $header= "".$smarty->fetch(get_template_path('headers.tpl')); $display= ( $header.$smarty->fetch(get_template_path('help.tpl'))); echo $display;