]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
allow registrations even when site is private (for invites, etc.)
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 3 Dec 2008 18:47:48 +0000 (13:47 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 3 Dec 2008 18:47:48 +0000 (13:47 -0500)
darcs-hash:20081203184748-5ed1f-b3c3236d17457a112db53595d64c5a41e9a9d2a2.gz

index.php

index 1edff0e4904907c5d1f14077a2ece17fa5f72114..62a2bcb74384a519dc73d716939ff32914888d3d 100644 (file)
--- 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', 'finishopenidlogin', 'api', 'doc')))
+    !in_array($action, array('login', 'openidlogin', 'finishopenidlogin', 'api', 'doc', 'register')))
 {
     common_redirect(common_local_url('login'));
 }