summaryrefslogtreecommitdiff
path: root/actions/recoverpassword.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/recoverpassword.php')
-rw-r--r--actions/recoverpassword.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php
index 2d38f0908..0357b9df6 100644
--- a/actions/recoverpassword.php
+++ b/actions/recoverpassword.php
@@ -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;
}