From: Evan Prodromou Date: Wed, 3 Dec 2008 18:52:54 +0000 (-0500) Subject: allow recoverpassword in private mode X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3ee84b3bfaeff3488ad8226db228385a849c3160;p=quix0rs-gnu-social.git allow recoverpassword in private mode darcs-hash:20081203185254-5ed1f-3dea8c6396ee3a05e2fff7ec02023f50c3d38515.gz --- diff --git a/index.php b/index.php index 62a2bcb743..d387740fc2 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')); }