From 4d1528734d840e2da0d9b24c18d739cd6d70853e Mon Sep 17 00:00:00 2001 From: Garret Buell Date: Sat, 30 Aug 2008 15:50:36 -0400 Subject: [PATCH] RequirePassword Require a password with at least 6 characters when registering. darcs-hash:20080830195036-e3c0d-6b4cac221674240e1a8383675b69863f54dd2525.gz --- actions/register.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actions/register.php b/actions/register.php index aee99b6938..f366bd3e00 100644 --- a/actions/register.php +++ b/actions/register.php @@ -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,