RequirePassword

Require a password with at least 6 characters when registering.

darcs-hash:20080830195036-e3c0d-6b4cac221674240e1a8383675b69863f54dd2525.gz
This commit is contained in:
Garret Buell 2008-08-30 15:50:36 -04:00
parent 51caab6e5e
commit 4d1528734d
1 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,9 @@ class RegisterAction extends Action {
} else if (!is_null($location) && strlen($location) > 255) {
$this->show_form(_('Location is too long (max 255 chars).'));
return;
} else if (strlen($password) < 6) {
$this->show_form(_('Password must be 6 or more characters.'));
return;
} else if ($password != $confirm) {
$this->show_form(_('Passwords don\'t match.'));
} else if ($user = User::register(array('nickname' => $nickname, 'password' => $password, 'email' => $email,