Code

Moved from "1" to "true"
[gosa.git] / html / helpviewer.php
index d515328546dc2d6156f9bf35b8506f45daffc8af..dbd868b47d4f2869d9365bf6f6b5828d41424ce1 100644 (file)
@@ -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","<br><h2>"._("There is no helpfile specified for this class."))."</h2>";
+    $smarty->assign("help_contents","<br><h2>"._("There is no helpfile specified for this class"))."</h2>";
     $header= "<!-- headers.tpl-->".$smarty->fetch(get_template_path('headers.tpl'));
     $display= (  $header.$smarty->fetch(get_template_path('help.tpl')));
     echo $display;