From 6f7eafce186b7310598eaa69e1f35119f2a13a7a Mon Sep 17 00:00:00 2001 From: Steffen185 <steffen.weber@gmail.com> Date: Fri, 22 Mar 2013 10:16:45 -0400 Subject: [PATCH] Save new password even if it has not changed --- plugins/password/password.php | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/plugins/password/password.php b/plugins/password/password.php index 39020a0..ec5bac3 100644 --- a/plugins/password/password.php +++ b/plugins/password/password.php @@ -146,10 +146,6 @@ else if ($check_strength && (!preg_match("/[0-9]/", $newpwd) || !preg_match("/[^A-Za-z0-9]/", $newpwd))) { $rcmail->output->command('display_message', $this->gettext('passwordweak'), 'error'); } - // password is the same as the old one, do nothing, return success - else if ($sespwd == $newpwd) { - $rcmail->output->command('display_message', $this->gettext('successfullysaved'), 'confirmation'); - } // try to save the password else if (!($res = $this->_save($curpwd, $newpwd))) { $rcmail->output->command('display_message', $this->gettext('successfullysaved'), 'confirmation'); -- Gitblit v1.9.1