summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 30662d4)
raw | patch | inline | side by side (parent: 30662d4)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Apr 2010 14:13:14 +0000 (14:13 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Apr 2010 14:13:14 +0000 (14:13 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17971 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 cce461f4a2d14402fbb463310318864c1b1924d9..ac8715d607e3d2752379febd46b20a954873a9e5 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 a6c50550fec7430533b6b9862746343f20455fd7..fb3b1b04f91d259e9d63c04423cefc69471d604f 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();