summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5a7e04d)
raw | patch | inline | side by side (parent: 5a7e04d)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 09:17:44 +0000 (09:17 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 09:17:44 +0000 (09:17 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18087 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/html/password.php | patch | blob | history |
index ac8715d607e3d2752379febd46b20a954873a9e5..93fbadb96bff6bf786bd57d0bd86623b160833a2 100644 (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"
}
/* 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;
}
$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",
"<b>"._("Warning").":</b> "._("Session will not be encrypted.").