diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:52:54 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-03 13:52:54 -0500 |
commit | 3ee84b3bfaeff3488ad8226db228385a849c3160 (patch) | |
tree | ff0cc3c1307c3e243a54a7b607b2d881c7fa3d36 /index.php | |
parent | 6c9031cc7bfc53e23b5512ee7bb5c216c1e99108 (diff) |
allow recoverpassword in private mode
darcs-hash:20081203185254-5ed1f-3dea8c6396ee3a05e2fff7ec02023f50c3d38515.gz
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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')); } |