diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:34:32 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:34:32 -0500 |
commit | 8c10b0ac4d8f0638260286deb0db0ad08c73911f (patch) | |
tree | e1c7200d88994762f0f50b7d625da685cd16a3df /index.php | |
parent | 06b234c3977609aae000c990125a48c46e523b56 (diff) |
fine-tuning the privacy flag
darcs-hash:20081203183432-5ed1f-7626661b797f64594f990ee06d9e13b73b265b49.gz
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -36,7 +36,12 @@ if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) { common_redirect(common_local_url('public')); } -if (!$user && common_config('site', 'private') && !in_array($action, array('login', 'api', 'doc')) { +// If the site is private, and they're not on one of the "public" +// parts of the site, redirect to login + +if (!$user && common_config('site', 'private') && + !in_array($action, array('login', 'openidlogin', 'api', 'doc'))) +{ common_redirect(common_local_url('login')); } |