]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
allow doc and api calls from private
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 3 Dec 2008 18:28:30 +0000 (13:28 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 3 Dec 2008 18:28:30 +0000 (13:28 -0500)
darcs-hash:20081203182830-5ed1f-ad1c3c585984cb4e27b078964d6f96bd7d8e05d8.gz

index.php

index 8a2afbd7f1d4136d97f2556b5ec91d3352c55e45..6767203582cf385a0442a6de4d861d1f0d0e9ce8 100644 (file)
--- 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'));
 }