diff options
author | kiko%async.com.br <> | 2004-03-27 11:51:43 +0000 |
---|---|---|
committer | kiko%async.com.br <> | 2004-03-27 11:51:43 +0000 |
commit | 4df1c8fd665e5fc7c66e265b1f32b75837ae719f (patch) | |
tree | fb5150bb7dea016e53093830685d82c81ae817a6 /request.cgi | |
parent | Fix for bug 226754: Move InvalidateLogins into Bugzilla::Auth::CGI. ... (diff) | |
download | bugzilla-4df1c8fd665e5fc7c66e265b1f32b75837ae719f.tar.gz bugzilla-4df1c8fd665e5fc7c66e265b1f32b75837ae719f.tar.bz2 bugzilla-4df1c8fd665e5fc7c66e265b1f32b75837ae719f.zip |
Fix for bug 234175: Remove deprecated ConnectToDatabase() and
quietly_check_login()/confirm_login() calls. Cleans up callsites
(consisting of most of our CGIs), swapping (where appropriate) for calls
to Bugzilla->login. Patch by Teemu Mannermaa <wicked@etlicon.fi>.
r=bbaetz, kiko. a=justdave.
Diffstat (limited to 'request.cgi')
-rwxr-xr-x | request.cgi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/request.cgi b/request.cgi index 90304a2b9..43be69856 100755 --- a/request.cgi +++ b/request.cgi @@ -31,9 +31,6 @@ use strict; use lib qw(.); require "CGI.pl"; -# Establish a connection to the database backend. -ConnectToDatabase(); - # Use Bugzilla's Request module which contains utilities for handling requests. use Bugzilla::Flag; use Bugzilla::FlagType; @@ -44,7 +41,7 @@ use Bugzilla::User; use vars qw($template $vars @legal_product @legal_components %components); # Make sure the user is logged in. -quietly_check_login(); +Bugzilla->login(); ################################################################################ # Main Body Execution |