use $newpassword instead of $password consistently

darcs-hash:20080624224030-34904-a2a50cfcadba05799094574201223907e6e423a6.gz
This commit is contained in:
Evan Prodromou 2008-06-24 18:40:30 -04:00
parent d367982253
commit 77d9a12ef6
1 changed files with 3 additions and 3 deletions

View File

@ -204,14 +204,14 @@ class RecoverpasswordAction extends Action {
return;
}
$password = $this->trimmed('newpassword');
$newpassword = $this->trimmed('newpassword');
$confirm = $this->trimmed('confirm');
if (!$password || strlen($password) < 6) {
if (!$newpassword || strlen($newpassword) < 6) {
$this->show_password_form(_t('Password must be 6 chars or more.'));
return;
}
if ($password != $confirm) {
if ($newpassword != $confirm) {
$this->show_password_form(_t('Password and confirmation do not match.'));
return;
}