summaryrefslogtreecommitdiff
path: root/actions/profilesettings.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlezvous.ca>2008-06-22 14:15:50 -0400
committerEvan Prodromou <evan@controlezvous.ca>2008-06-22 14:15:50 -0400
commit1899d09cd11676d375814e6c80107d93748656a7 (patch)
treee1c8f3509b0c6b028c8c63282ecf1519f8ce57fc /actions/profilesettings.php
parentd758c117843dec04b061263095baeea7697b05a4 (diff)
forgot to return on invalid nickname
darcs-hash:20080622181550-34904-7970919db30ccfc3979fa6c118c29af9eac0c550.gz
Diffstat (limited to 'actions/profilesettings.php')
-rw-r--r--actions/profilesettings.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index b6e24c729..e98c84935 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -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.'));