From: Mikael Nordfeldth Date: Wed, 25 Feb 2015 23:45:17 +0000 (+0100) Subject: Normalize username on AuthCrypt login X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0b09e4bfcb4cd7802eca86a031e4fc1ce85c6e3d;p=quix0rs-gnu-social.git Normalize username on AuthCrypt login Because users login with mixed casing and whatnot. --- diff --git a/plugins/AuthCrypt/AuthCryptPlugin.php b/plugins/AuthCrypt/AuthCryptPlugin.php index 5e9d983507..c99a0a4e2a 100644 --- a/plugins/AuthCrypt/AuthCryptPlugin.php +++ b/plugins/AuthCrypt/AuthCryptPlugin.php @@ -44,6 +44,8 @@ class AuthCryptPlugin extends AuthenticationPlugin function checkPassword($username, $password) { + $username = Nickname::normalize($username); + $user = User::getKV('nickname', $username); if (!($user instanceof User)) { return false; @@ -81,6 +83,8 @@ class AuthCryptPlugin extends AuthenticationPlugin // $oldpassword is already verified when calling this function... shouldn't this be private?! function changePassword($username, $oldpassword, $newpassword) { + $username = Nickname::normalize($username); + if (!$this->password_changeable) { return false; }