summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
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'));
}