diff options
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index 6ac283059..d97e3a18a 100644 --- a/actions/register.php +++ b/actions/register.php @@ -24,7 +24,9 @@ class RegisterAction extends Action { function handle($args) { parent::handle($args); - if (common_logged_in()) { + if (common_config('site', 'closed')) { + common_user_error(_('Registration not allowed.')); + } else if (common_logged_in()) { common_user_error(_('Already logged in.')); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->try_register(); |