diff options
author | lpsolit%gmail.com <> | 2005-10-25 06:11:55 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-25 06:11:55 +0000 |
commit | 44de29d04d1ca7e3b047b2a847508dc949c29038 (patch) | |
tree | 934c0ccce39c238b3bf6a0337014e6f1fde9918b /show_bug.cgi | |
parent | Bug 313209: Oracle requires "CASE WHEN" around boolean expressions in the SEL... (diff) | |
download | bugzilla-44de29d04d1ca7e3b047b2a847508dc949c29038.tar.gz bugzilla-44de29d04d1ca7e3b047b2a847508dc949c29038.tar.bz2 bugzilla-44de29d04d1ca7e3b047b2a847508dc949c29038.zip |
Bug 312157: Remove $::template and $::vars from globals.pl - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=LpSolit a=justdave
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-x | show_bug.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/show_bug.cgi b/show_bug.cgi index 31619800b..0a99598b5 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -30,11 +30,13 @@ use Bugzilla::User; require "globals.pl"; -use vars qw($template $vars $userid); +use vars qw($userid); use Bugzilla::Bug; my $cgi = Bugzilla->cgi; +my $template = Bugzilla->template; +my $vars = {}; if ($cgi->param('GoAheadAndLogIn')) { Bugzilla->login(LOGIN_REQUIRED); |