summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:28:30 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:28:30 -0500
commit06b234c3977609aae000c990125a48c46e523b56 (patch)
tree419cdfe707daf0773e20c8d9fbdb354e89eaddc7 /index.php
parent624940a9f42e9ac166f8f8c613b681439e7fdc7a (diff)
allow doc and api calls from private
darcs-hash:20081203182830-5ed1f-ad1c3c585984cb4e27b078964d6f96bd7d8e05d8.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 8a2afbd7f..676720358 100644
--- a/index.php
+++ b/index.php
@@ -36,7 +36,7 @@ if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
common_redirect(common_local_url('public'));
}
-if (!$user && common_config('site', 'private') && $action != 'login') {
+if (!$user && common_config('site', 'private') && !in_array($action, array('login', 'api', 'doc')) {
common_redirect(common_local_url('login'));
}