summaryrefslogtreecommitdiff
path: root/actions/profilesettings.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-08-08 18:11:47 +0000
committerZach Copley <zach@controlyourself.ca>2009-08-08 18:11:47 +0000
commite3bb64cd6ceb9519aaed435fcb7dccb7e16e674d (patch)
tree97f5b0a35565a4300f352dc308ee0089926c0f4e /actions/profilesettings.php
parentc03d5932877c15eb673febabda5227df2173fbad (diff)
parent932d1fb7ce06081c788ea088171fd69ef03cd394 (diff)
Merge branch '0.8.x' into twitter-oauth
Diffstat (limited to 'actions/profilesettings.php')
-rw-r--r--actions/profilesettings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index fb847680b..d8fb2c9bb 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -189,7 +189,7 @@ class ProfilesettingsAction extends AccountSettingsAction
// Some validation
if (!Validate::string($nickname, array('min_length' => 1,
'max_length' => 64,
- 'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) {
+ 'format' => NICKNAME_FMT))) {
$this->showForm(_('Nickname must have only lowercase letters and numbers and no spaces.'));
return;
} else if (!User::allowed_nickname($nickname)) {