summaryrefslogtreecommitdiffstats
path: root/show_activity.cgi
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-02-27 20:13:55 +0100
committerjocuri%softhome.net <>2004-02-27 20:13:55 +0100
commit6161333bca22fc8d6d448fd1fd5bd595bebb57ac (patch)
treed868c0b7be39bf10709a1fca39de918a7b1ae3cf /show_activity.cgi
parent345cca47639395e60f4b2aeff29add6af64146ca (diff)
downloadbugzilla-6161333bca22fc8d6d448fd1fd5bd595bebb57ac.tar.gz
bugzilla-6161333bca22fc8d6d448fd1fd5bd595bebb57ac.tar.xz
Patch for bug 235268: Convert show_activity.cgi to get rid of %FORM; r=jouni; a=justdave.
Diffstat (limited to 'show_activity.cgi')
-rwxr-xr-xshow_activity.cgi8
1 files changed, 5 insertions, 3 deletions
diff --git a/show_activity.cgi b/show_activity.cgi
index 8c636ea0b..e1697255b 100755
--- a/show_activity.cgi
+++ b/show_activity.cgi
@@ -28,6 +28,7 @@ use lib qw(.);
use vars qw ($template $vars);
require "CGI.pl";
+my $cgi = Bugzilla->cgi;
ConnectToDatabase();
@@ -40,16 +41,17 @@ quietly_check_login();
# Make sure the bug ID is a positive integer representing an existing
# bug that the user is authorized to access.
-ValidateBugID($::FORM{'id'});
+my $bug_id = $cgi->param('id');
+ValidateBugID($bug_id);
###############################################################################
# End Data/Security Validation
###############################################################################
($vars->{'operations'}, $vars->{'incomplete_data'}) =
- GetBugActivity($::FORM{'id'});
+ GetBugActivity($bug_id);
-$vars->{'bug_id'} = $::FORM{'id'};
+$vars->{'bug_id'} = $bug_id;
print Bugzilla->cgi->header();