diff options
author | Chad Parry <github@chad.parry.org> | 2011-04-24 08:28:39 -0600 |
---|---|---|
committer | Chad Parry <github@chad.parry.org> | 2011-04-24 08:28:39 -0600 |
commit | 26585fed03236f0f70a75959e1d3002025f4e15e (patch) | |
tree | 33a89567f40dbbdb8affcbe76baa27b242bc6d75 /modules/user/controllers/password.php | |
parent | 809567f12850f59bdeb47a2963f6968b99b5a201 (diff) | |
parent | c8f90e861b866d0caa86343a6c7213e923023d39 (diff) |
Merge branch 'master' of https://github.com/gallery/gallery3 into rawphoto
Diffstat (limited to 'modules/user/controllers/password.php')
-rw-r--r-- | modules/user/controllers/password.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/controllers/password.php b/modules/user/controllers/password.php index 4e93d5ce..cd46bbed 100644 --- a/modules/user/controllers/password.php +++ b/modules/user/controllers/password.php @@ -105,7 +105,7 @@ class Password_Controller extends Controller { if (!empty($hash)) { $hidden->value($hash); } - $minimum_length = module::get_var("user", "mininum_password_length", 5); + $minimum_length = module::get_var("user", "minimum_password_length", 5); $input_password = $group->password("password")->label(t("Password"))->id("g-password") ->rules($minimum_length ? "required|length[$minimum_length, 40]" : "length[40]"); $group->password("password2")->label(t("Confirm Password"))->id("g-password2") |