summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:47:48 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:47:48 -0500
commit301f5a176cf734ba4ee9c37e04b9ffbb3896dbee (patch)
tree845a43739f78933374aa248a80d5a9ea57b6606c /index.php
parentdaba1b010aef5258e6c08a8a91186ab5d7bc4581 (diff)
allow registrations even when site is private (for invites, etc.)
darcs-hash:20081203184748-5ed1f-b3c3236d17457a112db53595d64c5a41e9a9d2a2.gz
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 1edff0e49..62a2bcb74 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'));
}