From: Evan Prodromou Date: Tue, 21 Oct 2008 18:30:35 +0000 (-0400) Subject: full sentence for invite-only error X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0f6572fdba209f76f3083d81613afae68e0cc793;p=quix0rs-gnu-social.git full sentence for invite-only error darcs-hash:20081021183035-5ed1f-c40445017094a3f6c0e89fa8744ede28fd5ab20a.gz --- diff --git a/actions/register.php b/actions/register.php index 10336d41e6..1d7e71dfbc 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; }