diff options
Diffstat (limited to 'actions')
-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; } |