From: lpsolit%gmail.com <> Date: Fri, 20 May 2005 02:35:48 +0000 (+0000) Subject: Bug 294778: Unable to create new accounts when requirelogin is on - Patch by Frédéric... X-Git-Tag: bugzilla-2.20rc1~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5136f3867c9cd853a362f20fc6074fc770c7f88b;p=thirdparty%2Fbugzilla.git Bug 294778: Unable to create new accounts when requirelogin is on - Patch by Frédéric Buclin r=wurblzap a=justdave --- diff --git a/createaccount.cgi b/createaccount.cgi index c89de38199..9d9f55d8ad 100755 --- a/createaccount.cgi +++ b/createaccount.cgi @@ -30,6 +30,7 @@ use lib qw(.); require "CGI.pl"; +use Bugzilla::Constants; use Bugzilla::User; # Shut up misguided -w warnings about "used only once": @@ -41,7 +42,7 @@ use vars qw( # Just in case someone already has an account, let them get the correct footer # on an error message. The user is logged out just before the account is # actually created. -Bugzilla->login(); +Bugzilla->login(LOGIN_OPTIONAL); # If we're using LDAP for login, then we can't create a new account here. unless (Bugzilla::Auth->can_edit('new')) {