diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-10-21 14:30:35 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-10-21 14:30:35 -0400 |
commit | 0f6572fdba209f76f3083d81613afae68e0cc793 (patch) | |
tree | 1817494503495284048cacf799609fa279e1e57b /actions/register.php | |
parent | 3a246c17266d562e0510e5a332009dcfda43c1c7 (diff) |
full sentence for invite-only error
darcs-hash:20081021183035-5ed1f-c40445017094a3f6c0e89fa8744ede28fd5ab20a.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/register.php b/actions/register.php index 10336d41e..1d7e71dfb 100644 --- a/actions/register.php +++ b/actions/register.php @@ -64,7 +64,7 @@ class RegisterAction extends Action { } if (common_config('site', 'inviteonly') && !($code && $invite)) { - $this->client_error(_('Sorry, site is invite-only')); + $this->client_error(_('Sorry, only invited people can register.')); return; } @@ -165,7 +165,7 @@ class RegisterAction extends Action { } if (common_config('site', 'inviteonly') && !($code && $invite)) { - $this->client_error(_('Sorry, site is invite-only')); + $this->client_error(_('Sorry, only invited people can register.')); return; } |