summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4b8f44e)
raw | patch | inline | side by side (parent: 4b8f44e)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 5 Dec 2005 06:19:54 +0000 (06:19 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 5 Dec 2005 06:19:54 +0000 (06:19 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2226 594d385d-05f5-0310-b6e9-bd551577e9d8
html/helpviewer.php | patch | blob | history |
diff --git a/html/helpviewer.php b/html/helpviewer.php
index 44377afbdea51ee786198e8a596823df7902cff3..d515328546dc2d6156f9bf35b8506f45daffc8af 100644 (file)
--- a/html/helpviewer.php
+++ b/html/helpviewer.php
error_reporting(0);
header("Content-type: text/html; charset=UTF-8");
session_start();
+$config= $_SESSION['config'];
/* If no config object is found in the session, abort help */
if (!isset($_SESSION['config'])){
$lang= $config->data['MAIN']['LANG'];
}
+if(isset($_SESSION['ui']->language)){
+ $lang = $_SESSION['ui']->language;
+}
+
$lang.=".UTF-8";
putenv("LANGUAGE=");
putenv("LANG=$lang");
if(isset($_SESSION['helpobject'])){
$helpobject = $_SESSION['helpobject'];
}else{
- $helpobject['lang'] = "en";
+ $helpobject['lang'] = $lang;
$helpobject['helpconf'] = array();
$helpobject['currentplug'] = "";
$helpobject['file'] = "index.html";
$helpobject['helpconf'] = $_SESSION['plist']->gen_headlines();
}
-$lang = get_browser_language();
$lang = $lang[0].$lang[1];
$helpobject['lang'] = $lang;
$index =$defaultpage;
$forward ="node1.html";
-
/* Every class which is called within a tab, stores its name in the Session.
* If $_SESSION['current_class_for_help'] isset,
* get the helpfile specified in the xml file and display it.