diff options
Diffstat (limited to 'report.cgi')
-rwxr-xr-x | report.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/report.cgi b/report.cgi index 79c72beaa..ad92e27f3 100755 --- a/report.cgi +++ b/report.cgi @@ -26,12 +26,14 @@ use lib "."; require "globals.pl"; -use vars qw($template $vars @legal_opsys @legal_platform @legal_severity); +use vars qw(@legal_opsys @legal_platform @legal_severity); use Bugzilla; use Bugzilla::Constants; my $cgi = Bugzilla->cgi; +my $template = Bugzilla->template; +my $vars = {}; my $buffer = $cgi->query_string(); # Go straight back to query.cgi if we are adding a boolean chart. |