diff options
Diffstat (limited to 'includes/specials')
-rw-r--r-- | includes/specials/SpecialChangePassword.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/specials/SpecialChangePassword.php b/includes/specials/SpecialChangePassword.php index 41b3b255..ba728ac2 100644 --- a/includes/specials/SpecialChangePassword.php +++ b/includes/specials/SpecialChangePassword.php @@ -221,6 +221,12 @@ class SpecialChangePassword extends UnlistedSpecialPage { throw new PasswordError( $this->msg( 'login-throttled' )->text() ); } + $abortMsg = 'resetpass-abort-generic'; + if ( !wfRunHooks( 'AbortChangePassword', array( $user, $this->mOldpass, $newpass, &$abortMsg ) ) ) { + wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'abortreset' ) ); + throw new PasswordError( $this->msg( $abortMsg )->text() ); + } + if( !$user->checkTemporaryPassword($this->mOldpass) && !$user->checkPassword($this->mOldpass) ) { wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'wrongpassword' ) ); throw new PasswordError( $this->msg( 'resetpass-wrong-oldpass' )->text() ); |