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 /index.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 'index.cgi')
-rwxr-xr-x | index.cgi | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -32,8 +32,6 @@ use strict; use lib "."; require "globals.pl"; -use vars qw($vars); - # Check whether or not the user is logged in and, if so, set the $::userid use Bugzilla::Constants; Bugzilla->login(LOGIN_OPTIONAL); @@ -55,5 +53,5 @@ my $template = Bugzilla->template; print $cgi->header(); # Generate and return the UI (HTML page) from the appropriate template. -$template->process("index.html.tmpl", $vars) +$template->process("index.html.tmpl") || ThrowTemplateError($template->error()); |