diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:28:30 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:28:30 -0500 |
commit | 06b234c3977609aae000c990125a48c46e523b56 (patch) | |
tree | 419cdfe707daf0773e20c8d9fbdb354e89eaddc7 | |
parent | 624940a9f42e9ac166f8f8c613b681439e7fdc7a (diff) |
allow doc and api calls from private
darcs-hash:20081203182830-5ed1f-ad1c3c585984cb4e27b078964d6f96bd7d8e05d8.gz
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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')); } |