forgot to return on invalid nickname
darcs-hash:20080622181550-34904-7970919db30ccfc3979fa6c118c29af9eac0c550.gz
This commit is contained in:
parent
d758c11784
commit
1899d09cd1
|
@ -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)) {
|
||||
|
|
|
@ -90,6 +90,7 @@ class ProfilesettingsAction extends SettingsAction {
|
|||
return;
|
||||
} else if (!User::allowed_nickname($nickname)) {
|
||||
$this->show_form(_t('Not a valid nickname.'));
|
||||
return;
|
||||
} else if (!is_null($homepage) && (strlen($homepage) > 0) &&
|
||||
!Validate::uri($homepage, array('allowed_schemes' => array('http', 'https')))) {
|
||||
$this->show_form(_t('Homepage is not a valid URL.'));
|
||||
|
|
Loading…
Reference in New Issue
Block a user