summaryrefslogtreecommitdiffstats
path: root/votes.cgi
diff options
context:
space:
mode:
authorkiko%async.com.br <>2004-03-27 12:51:43 +0100
committerkiko%async.com.br <>2004-03-27 12:51:43 +0100
commit4df1c8fd665e5fc7c66e265b1f32b75837ae719f (patch)
treefb5150bb7dea016e53093830685d82c81ae817a6 /votes.cgi
parent3374c87eb2788ca2427061df9e63167846c80b1d (diff)
downloadbugzilla-4df1c8fd665e5fc7c66e265b1f32b75837ae719f.tar.gz
bugzilla-4df1c8fd665e5fc7c66e265b1f32b75837ae719f.tar.xz
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 'votes.cgi')
-rwxr-xr-xvotes.cgi7
1 files changed, 3 insertions, 4 deletions
diff --git a/votes.cgi b/votes.cgi
index ed7f6ad51..937149b3d 100755
--- a/votes.cgi
+++ b/votes.cgi
@@ -27,14 +27,13 @@ use strict;
use lib ".";
use Bugzilla;
+use Bugzilla::Constants;
require "CGI.pl";
# Use global template variables
use vars qw($template $vars);
-ConnectToDatabase();
-
my $cgi = Bugzilla->cgi;
# If the action is show_bug, you need a bug_id.
@@ -51,10 +50,10 @@ my $action = $::FORM{'action'} ||
if ($action eq "show_bug" ||
($action eq "show_user" && defined($::FORM{'user'})))
{
- quietly_check_login();
+ Bugzilla->login();
}
else {
- confirm_login();
+ Bugzilla->login(LOGIN_REQUIRED);
}
################################################################################