allow doc and api calls from private

darcs-hash:20081203182830-5ed1f-ad1c3c585984cb4e27b078964d6f96bd7d8e05d8.gz
This commit is contained in:
Evan Prodromou 2008-12-03 13:28:30 -05:00
parent 624940a9f4
commit 06b234c397
1 changed files with 1 additions and 1 deletions

View File

@ -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'));
}