Code

Fixed config flag reading for password changes
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 29 Apr 2010 14:12:17 +0000 (14:12 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 29 Apr 2010 14:12:17 +0000 (14:12 +0000)
- hash was renamed to passwordDefaultHash

git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@17970 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/password.php
gosa-core/plugins/personal/generic/class_user.inc

index 459512228ef18b6574e2257483c79b57d07ca091..405dbb47a6aea6a3003244677e90ff56ef22737e 100644 (file)
@@ -150,7 +150,7 @@ if ($config->get_cfg_value("forcessl") == 'true' && $ssl != ''){
 }
 
 /* Check for selected password method */
-$method= $config->get_cfg_value("hash", "crypt/md5");
+$method= $config->get_cfg_value("passwordDefaultHash", "crypt/md5");
 if (isset($_GET['method'])){
        $method= validate($_GET['method']);
        $tmp = new passwordMethod($config);
index 9d3f500a9cd07ed3b87b191e3d0d94744e1d9d9c..2a0ff3cf2fede2c7acdcff03c884acc1c524a7a5 100644 (file)
@@ -580,7 +580,7 @@ class user extends plugin
 
     /* Prepare password hashes */
     if ($this->pw_storage == ""){
-      $this->pw_storage= $this->config->get_cfg_value("hash");
+      $this->pw_storage= $this->config->get_cfg_value("passwordDefaultHash");
     }
 
     $temp= passwordMethod::get_available_methods();