From: hickert Date: Wed, 5 May 2010 09:17:39 +0000 (+0000) Subject: fixed property X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8113026f1e6761a368254e4d5a17a3a2da3068d9;p=gosa.git fixed property git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18085 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/html/index.php b/gosa-core/html/index.php index a7f606a31..61dc38e61 100644 --- a/gosa-core/html/index.php +++ b/gosa-core/html/index.php @@ -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."), "".bold(_("here"))."")); } else { $smarty->assign("ssl", ""); @@ -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; }