summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:34:32 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:34:32 -0500
commit8c10b0ac4d8f0638260286deb0db0ad08c73911f (patch)
treee1c7200d88994762f0f50b7d625da685cd16a3df /index.php
parent06b234c3977609aae000c990125a48c46e523b56 (diff)
fine-tuning the privacy flag
darcs-hash:20081203183432-5ed1f-7626661b797f64594f990ee06d9e13b73b265b49.gz
Diffstat (limited to 'index.php')
-rw-r--r--index.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/index.php b/index.php
index 676720358..546524d9b 100644
--- a/index.php
+++ b/index.php
@@ -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'));
}