From f162521444148d622df3b42a8304b6cce8f2150e Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Thu, 6 Jul 2006 13:12:04 +0000 Subject: Bug 173629: Clean up "my" variable scoping issues for mod_perl Patch By Max Kanat-Alexander r=LpSolit, a=myk --- token.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'token.cgi') diff --git a/token.cgi b/token.cgi index dcde8c108..44e456710 100755 --- a/token.cgi +++ b/token.cgi @@ -36,10 +36,10 @@ use Bugzilla::Error; use Bugzilla::Token; use Bugzilla::User; -my $cgi = Bugzilla->cgi; my $dbh = Bugzilla->dbh; -my $template = Bugzilla->template; -my $vars = {}; +local our $cgi = Bugzilla->cgi; +local our $template = Bugzilla->template; +local our $vars = {}; Bugzilla->login(LOGIN_OPTIONAL); -- cgit v1.2.3-24-g4f1b