From 44de29d04d1ca7e3b047b2a847508dc949c29038 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 25 Oct 2005 06:11:55 +0000 Subject: Bug 312157: Remove $::template and $::vars from globals.pl - Patch by Olav Vitters r=LpSolit a=justdave --- sidebar.cgi | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sidebar.cgi') diff --git a/sidebar.cgi b/sidebar.cgi index 15506eba4..2f7743ebb 100755 --- a/sidebar.cgi +++ b/sidebar.cgi @@ -20,12 +20,10 @@ use strict; use lib "."; require "globals.pl"; -# Shut up "Used Only Once" errors -use vars qw($template $vars); - Bugzilla->login(); my $cgi = Bugzilla->cgi; +my $template = Bugzilla->template; ############################################################################### # Main Body Execution @@ -43,7 +41,7 @@ my $useragent = $ENV{HTTP_USER_AGENT}; if ($useragent =~ m:Mozilla/([1-9][0-9]*):i && $1 >= 5 && $useragent !~ m/compatible/i) { print $cgi->header("application/vnd.mozilla.xul+xml"); # Generate and return the XUL from the appropriate template. - $template->process("sidebar.xul.tmpl", $vars) + $template->process("sidebar.xul.tmpl") || ThrowTemplateError($template->error()); } else { ThrowUserError("sidebar_supports_mozilla_only"); -- cgit v1.2.3-24-g4f1b