diff options
author | lpsolit%gmail.com <> | 2005-08-10 10:30:39 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-10 10:30:39 +0200 |
commit | 8d06d1ef539f3f8becc56953b040bc710ec9a859 (patch) | |
tree | ec55649c78ed3ccfcb79257b3269d30c2703cb8d /show_activity.cgi | |
parent | 67b67a2e824b5120c3d8d06948927b5372ea98a6 (diff) | |
download | bugzilla-8d06d1ef539f3f8becc56953b040bc710ec9a859.tar.gz bugzilla-8d06d1ef539f3f8becc56953b040bc710ec9a859.tar.xz |
Bug 301508: Remove CGI.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat,wicked a=justdave
Diffstat (limited to 'show_activity.cgi')
-rwxr-xr-x | show_activity.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/show_activity.cgi b/show_activity.cgi index eacaeba37..b0ad42379 100755 --- a/show_activity.cgi +++ b/show_activity.cgi @@ -27,7 +27,7 @@ use strict; use lib qw(.); use vars qw ($template $vars); -require "CGI.pl"; +require "globals.pl"; use Bugzilla::Bug; @@ -54,7 +54,7 @@ ValidateBugID($bug_id); $vars->{'bug_id'} = $bug_id; -print Bugzilla->cgi->header(); +print $cgi->header(); $template->process("bug/activity/show.html.tmpl", $vars) || ThrowTemplateError($template->error()); |