Commit 6161333b authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 235268: Convert show_activity.cgi to get rid of %FORM; r=jouni; a=justdave.

parent 345cca47
...@@ -28,6 +28,7 @@ use lib qw(.); ...@@ -28,6 +28,7 @@ use lib qw(.);
use vars qw ($template $vars); use vars qw ($template $vars);
require "CGI.pl"; require "CGI.pl";
my $cgi = Bugzilla->cgi;
ConnectToDatabase(); ConnectToDatabase();
...@@ -40,16 +41,17 @@ quietly_check_login(); ...@@ -40,16 +41,17 @@ quietly_check_login();
# Make sure the bug ID is a positive integer representing an existing # Make sure the bug ID is a positive integer representing an existing
# bug that the user is authorized to access. # bug that the user is authorized to access.
ValidateBugID($::FORM{'id'}); my $bug_id = $cgi->param('id');
ValidateBugID($bug_id);
############################################################################### ###############################################################################
# End Data/Security Validation # End Data/Security Validation
############################################################################### ###############################################################################
($vars->{'operations'}, $vars->{'incomplete_data'}) = ($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(); print Bugzilla->cgi->header();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment