diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:47:48 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:47:48 -0500 |
commit | 301f5a176cf734ba4ee9c37e04b9ffbb3896dbee (patch) | |
tree | 845a43739f78933374aa248a80d5a9ea57b6606c | |
parent | daba1b010aef5258e6c08a8a91186ab5d7bc4581 (diff) |
allow registrations even when site is private (for invites, etc.)
darcs-hash:20081203184748-5ed1f-b3c3236d17457a112db53595d64c5a41e9a9d2a2.gz
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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')); } |