diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:24:21 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:24:21 -0500 |
commit | 624940a9f42e9ac166f8f8c613b681439e7fdc7a (patch) | |
tree | ab922e3755832062a50fffc37c588d719fffd1bd | |
parent | acb00a903e4cc1e6a39b381399f1e0642c029ee6 (diff) |
if the site is marked as private, redirect anon users to login
darcs-hash:20081203182421-5ed1f-9a8569a5b38ca15c7ae83438a59a05f8b07215bd.gz
-rw-r--r-- | index.php | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -36,6 +36,10 @@ if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) { common_redirect(common_local_url('public')); } +if (!$user && common_config('site', 'private') && $action != 'login') { + common_redirect(common_local_url('login')); +} + $actionfile = INSTALLDIR."/actions/$action.php"; if (file_exists($actionfile)) { |