From 8c10b0ac4d8f0638260286deb0db0ad08c73911f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 3 Dec 2008 13:34:32 -0500 Subject: fine-tuning the privacy flag darcs-hash:20081203183432-5ed1f-7626661b797f64594f990ee06d9e13b73b265b49.gz --- index.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'index.php') 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')); } -- cgit v1.2.3-54-g00ecf