diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-11-18 16:09:58 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-11-18 16:09:58 -0500 |
commit | 745ea277d8b45e0940cf0da3bafbe32470afa121 (patch) | |
tree | 54abf2eff0e58689ec82a0e25739596b75fe4603 /actions | |
parent | b417e4d24f2c4c13439c01f9f664bf6090c99016 (diff) |
Should not canonicalize nickname before calling common_check_user
Diffstat (limited to 'actions')
-rw-r--r-- | actions/login.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/login.php b/actions/login.php index 881df0099..63955e3f5 100644 --- a/actions/login.php +++ b/actions/login.php @@ -133,7 +133,7 @@ class LoginAction extends Action return; } - $nickname = common_canonical_nickname($this->trimmed('nickname')); + $nickname = $this->trimmed('nickname'); $password = $this->arg('password'); $user = common_check_user($nickname, $password); |