From c1ca86053ed276aa05eac8468cea61785629ac5e Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Mon, 30 Jun 2008 02:57:54 +0000 Subject: Bug 440612 – Use Bugzilla::Bug->check everywhere instead of ValidateBugID Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- show_activity.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'show_activity.cgi') diff --git a/show_activity.cgi b/show_activity.cgi index d2570f8b1..f7db3dd0b 100755 --- a/show_activity.cgi +++ b/show_activity.cgi @@ -43,17 +43,17 @@ Bugzilla->login(); # Make sure the bug ID is a positive integer representing an existing # bug that the user is authorized to access. -my $bug_id = $cgi->param('id'); -ValidateBugID($bug_id); +my $id = $cgi->param('id'); +my $bug = Bugzilla::Bug->check($id); ############################################################################### # End Data/Security Validation ############################################################################### ($vars->{'operations'}, $vars->{'incomplete_data'}) = - Bugzilla::Bug::GetBugActivity($bug_id); + Bugzilla::Bug::GetBugActivity($bug->id); -$vars->{'bug'} = new Bugzilla::Bug($bug_id); +$vars->{'bug'} = $bug; print $cgi->header(); -- cgit v1.2.3-24-g4f1b