From: Evan Prodromou <evan@controlyourself.ca>
Date: Wed, 3 Dec 2008 18:36:38 +0000 (-0500)
Subject: add finishopenidlogin to list of actions that anon users can do
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a84394f827e57d0e461d68340cf9a4ea3da5cf6f;p=quix0rs-gnu-social.git

add finishopenidlogin to list of actions that anon users can do

darcs-hash:20081203183638-5ed1f-f54d43e62dca66d9ebbd1203549e63c165510b22.gz
---

diff --git a/index.php b/index.php
index 546524d9ba..1edff0e490 100644
--- a/index.php
+++ b/index.php
@@ -40,7 +40,7 @@ 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', 'api', 'doc')))
+    !in_array($action, array('login', 'openidlogin', 'finishopenidlogin', 'api', 'doc')))
 {
     common_redirect(common_local_url('login'));
 }