diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-11 10:18:24 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-11 10:18:24 -0400 |
commit | 64b5b1902c5921929cad57a19244dbc0743b6936 (patch) | |
tree | 24408b004b79d47d67534a8b2aa9658a3eb779a8 /actions/register.php | |
parent | 02e2dfd1aaf085911e56ac672d9674f86262514b (diff) |
canonicalization lowercases nicknames
darcs-hash:20080611141824-84dde-a1016e113f7ba0e32685d935cd57618c60db2265.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index d2e54b634..d41eb9490 100644 --- a/actions/register.php +++ b/actions/register.php @@ -54,7 +54,7 @@ class RegisterAction extends Action { } else if (!Validate::string($nickname, array('min_length' => 1, 'max_length' => 64, 'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) { - $this->show_form(_t('Nickname must have only letters and numbers and no spaces.')); + $this->show_form(_t('Nickname must have only lowercase letters and numbers and no spaces.')); } else if ($this->nickname_exists($nickname)) { $this->show_form(_t('Nickname already exists.')); } else if ($this->email_exists($email)) { |