From 301f5a176cf734ba4ee9c37e04b9ffbb3896dbee Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 3 Dec 2008 13:47:48 -0500 Subject: [PATCH] allow registrations even when site is private (for invites, etc.) darcs-hash:20081203184748-5ed1f-b3c3236d17457a112db53595d64c5a41e9a9d2a2.gz --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 1edff0e490..62a2bcb743 100644 --- a/index.php +++ b/index.php @@ -40,7 +40,7 @@ if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) { // parts of the site, redirect to login if (!$user && common_config('site', 'private') && - !in_array($action, array('login', 'openidlogin', 'finishopenidlogin', 'api', 'doc'))) + !in_array($action, array('login', 'openidlogin', 'finishopenidlogin', 'api', 'doc', 'register'))) { common_redirect(common_local_url('login')); }