summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f0e38e7)
raw | patch | inline | side by side (parent: f0e38e7)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Apr 2010 14:12:17 +0000 (14:12 +0000) | ||
committer | hickert <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
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@17970 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/html/password.php | patch | blob | history | |
gosa-core/plugins/personal/generic/class_user.inc | patch | blob | history |
index 459512228ef18b6574e2257483c79b57d07ca091..405dbb47a6aea6a3003244677e90ff56ef22737e 100644 (file)
}
/* 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);
diff --git a/gosa-core/plugins/personal/generic/class_user.inc b/gosa-core/plugins/personal/generic/class_user.inc
index 9d3f500a9cd07ed3b87b191e3d0d94744e1d9d9c..2a0ff3cf2fede2c7acdcff03c884acc1c524a7a5 100644 (file)
/* 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();