diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-10 11:53:35 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-10 11:53:35 -0400 |
commit | e9ed20a69d8f646bc85151c1e890f5828a966fcf (patch) | |
tree | e72bdf25cc94c630c31863d2985b1f29b4b27414 /index.php | |
parent | 17dcf1c3170bc905e3b0fdffc804d6f7229ac61b (diff) | |
parent | 14b46e2183f10359cc53d597913a878f53e23719 (diff) |
Merge commit 'jeff-themovie/0.8.x-openidonly' into 0.8.x
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 20 |
1 files changed, 14 insertions, 6 deletions
@@ -182,12 +182,20 @@ function main() // If the site is private, and they're not on one of the "public" // parts of the site, redirect to login - if (!$user && common_config('site', 'private') && - !in_array($action, array('login', 'openidlogin', 'finishopenidlogin', - 'recoverpassword', 'api', 'doc', 'register')) && - !preg_match('/rss$/', $action)) { - common_redirect(common_local_url('login')); - return; + if (!$user && common_config('site', 'private')) { + $public_actions = array('openidlogin', 'finishopenidlogin', + 'recoverpassword', 'api', 'doc'); + $login_action = 'openidlogin'; + if (!common_config('site', 'openidonly')) { + $public_actions[] = 'login'; + $public_actions[] = 'register'; + $login_action = 'login'; + } + if (!in_array($action, $public_actions) && + !preg_match('/rss$/', $action)) { + common_redirect(common_local_url($login_action)); + return; + } } $action_class = ucfirst($action).'Action'; |