allow doc and api calls from private
darcs-hash:20081203182830-5ed1f-ad1c3c585984cb4e27b078964d6f96bd7d8e05d8.gz
This commit is contained in:
parent
624940a9f4
commit
06b234c397
@ -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'));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user