allow registrations even when site is private (for invites, etc.)

darcs-hash:20081203184748-5ed1f-b3c3236d17457a112db53595d64c5a41e9a9d2a2.gz
This commit is contained in:
Evan Prodromou 2008-12-03 13:47:48 -05:00
parent daba1b010a
commit 301f5a176c
1 changed files with 1 additions and 1 deletions

View File

@ -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'));
}