Code

Updated config flag reading for password.php
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 May 2010 07:17:44 +0000 (07:17 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 May 2010 07:17:44 +0000 (07:17 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18315 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/password.php

index 07e919d4ec515830dd3eb26476480596cf7234b1..4880f71979a70960fb0a1a11a048c2858f6eb98c 100644 (file)
@@ -76,9 +76,7 @@ if ($_SERVER["REQUEST_METHOD"] != "POST") {
 }
 
 /* Set template compile directory */
-$smarty->compile_dir= $config->get_cfg_value("core",
-    "templateCompileDirectory", '/var/spool/gosa'
-);
+$smarty->compile_dir= $config->get_cfg_value("core", "templateCompileDirectory");
 
 /* Check for compile directory */
 if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))) {
@@ -171,7 +169,7 @@ if ($config->get_cfg_value("core","forceSSL") == 'true' && $ssl != '') {
 }
 
 /* Check for selected password method */
-$method= $config->get_cfg_value("core","passwordDefaultHash", "crypt/md5");
+$method= $config->get_cfg_value("core","passwordDefaultHash");
 if (isset($_GET['method'])) {
     $method= validate($_GET['method']);
     $tmp = new passwordMethod($config);