Code

Updated configRegistry
[gosa.git] / gosa-core / html / index.php
index 6389fc4127e4456cc01e37fe7dd0dcd7618ac492..61dc38e61c7c8ac7da64f75aa36e26a4625b4c04 100644 (file)
@@ -68,7 +68,7 @@ function displayLogin()
     $smarty->assign("message", $message);
 
     /* Displasy SSL mode warning? */
-    if ($ssl != "" && $config->get_cfg_value('warnssl') == 'true') {
+    if ($ssl != "" && $config->get_cfg_value('warnSSL') == 'true') {
         $smarty->assign("ssl", sprintf(_("This session is not ecrypted. Click %s to enter an encrypted session."), "<a href=\"$ssl\">".bold(_("here"))."</a>"));
     } else {
         $smarty->assign("ssl", "");
@@ -105,7 +105,7 @@ function displayLogin()
     }
     $smarty->assign("msg_dialogs", msg_dialog::get_dialogs());
     $smarty->assign("iePngWorkaround", $config->get_cfg_value("iePngWorkaround","false" ) == "true");
-    $smarty->assign("usePrototype", "false");
+
     $smarty->display (get_template_path('headers.tpl'));
     $smarty->assign("version",get_gosa_version());
     $smarty->display(get_template_path('login.tpl'));
@@ -161,7 +161,7 @@ if (!is_readable(CONFIG_DIR."/".CONFIG_FILE)) {
 
 /* Parse configuration file */
 $config= new config(CONFIG_DIR."/".CONFIG_FILE, $BASE_DIR);
-session::global_set('DEBUGLEVEL',$config->get_cfg_value('DEBUGLEVEL'));
+session::global_set('debugLevel',$config->get_cfg_value('debugLevel'));
 if ($_SERVER["REQUEST_METHOD"] != "POST") {
     @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
 }
@@ -219,7 +219,7 @@ if (!isset($_SERVER['HTTPS']) ||
     }
 
 /* If SSL is forced, just forward to the SSL enabled site */
-if ($config->get_cfg_value("forcessl") == 'true' && $ssl != '') {
+if ($config->get_cfg_value("forceSSL") == 'true' && $ssl != '') {
     header ("Location: $ssl");
     exit;
 }
@@ -333,7 +333,7 @@ if (($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])) || $htacces
             $ui= ldap_login_user($username, $_POST["password"]);
         }
         if ($ui === NULL || !$ui) {
-            $message= _("Please check the username/password combination.");
+            $message= _("Please check the username/password combination!");
             $smarty->assign ('nextfield', 'password');
             session::global_set('config',$config);
             new log("security","login","",array(),"Authentication failed for user \"$username\"");