summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:52:54 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-03 13:52:54 -0500
commit3ee84b3bfaeff3488ad8226db228385a849c3160 (patch)
treeff0cc3c1307c3e243a54a7b607b2d881c7fa3d36 /index.php
parent6c9031cc7bfc53e23b5512ee7bb5c216c1e99108 (diff)
allow recoverpassword in private mode
darcs-hash:20081203185254-5ed1f-3dea8c6396ee3a05e2fff7ec02023f50c3d38515.gz
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index 62a2bcb74..d387740fc 100644
--- a/index.php
+++ b/index.php
@@ -40,7 +40,8 @@ if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
// parts of the site, redirect to login
if (!$user && common_config('site', 'private') &&
- !in_array($action, array('login', 'openidlogin', 'finishopenidlogin', 'api', 'doc', 'register')))
+ !in_array($action, array('login', 'openidlogin', 'finishopenidlogin',
+ 'recoverpassword', 'api', 'doc', 'register')))
{
common_redirect(common_local_url('login'));
}