diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 14:15:50 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 14:15:50 -0400 |
commit | 1899d09cd11676d375814e6c80107d93748656a7 (patch) | |
tree | e1c8f3509b0c6b028c8c63282ecf1519f8ce57fc /actions/finishopenidlogin.php | |
parent | d758c117843dec04b061263095baeea7697b05a4 (diff) |
forgot to return on invalid nickname
darcs-hash:20080622181550-34904-7970919db30ccfc3979fa6c118c29af9eac0c550.gz
Diffstat (limited to 'actions/finishopenidlogin.php')
-rw-r--r-- | actions/finishopenidlogin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/finishopenidlogin.php b/actions/finishopenidlogin.php index fe9894e52..02d8fff98 100644 --- a/actions/finishopenidlogin.php +++ b/actions/finishopenidlogin.php @@ -342,8 +342,8 @@ class FinishopenidloginAction extends Action { 'max_length' => 64, 'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) { return false; - } - if (!User::allowed_nickname($str)) { + } + if (!User::allowed_nickname($str)) { return false; } if (User::staticGet('nickname', $str)) { |