From: hickert Date: Wed, 5 May 2010 09:17:44 +0000 (+0000) Subject: fixed property X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=353d148c27f41e155dd4e2e7cb29c12205046988;p=gosa.git fixed property git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18087 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/html/password.php b/gosa-core/html/password.php index ac8715d60..93fbadb96 100644 --- a/gosa-core/html/password.php +++ b/gosa-core/html/password.php @@ -68,7 +68,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" @@ -165,7 +165,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; } @@ -312,7 +312,7 @@ $smarty->assign('uid', $uid); $smarty->assign('password_img', get_template_path('images/password.png')); /* Displasy SSL mode warning? */ -if ($ssl != "" && $config->get_cfg_value("warnssl") == 'true') { +if ($ssl != "" && $config->get_cfg_value("warnSSL") == 'true') { $smarty->assign( "ssl", ""._("Warning").": "._("Session will not be encrypted.").