diff options
author | mkanat%bugzilla.org <> | 2008-06-30 02:57:54 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-06-30 02:57:54 +0000 |
commit | c1ca86053ed276aa05eac8468cea61785629ac5e (patch) | |
tree | 836d5cae869dc47008b16bccb1de47320a36fcc8 /show_activity.cgi | |
parent | Bug 421064: [Oracle] whine.pl crashes and doesn't work (diff) | |
download | bugzilla-c1ca86053ed276aa05eac8468cea61785629ac5e.tar.gz bugzilla-c1ca86053ed276aa05eac8468cea61785629ac5e.tar.bz2 bugzilla-c1ca86053ed276aa05eac8468cea61785629ac5e.zip |
Bug 440612 â Use Bugzilla::Bug->check everywhere instead of ValidateBugID
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'show_activity.cgi')
-rwxr-xr-x | show_activity.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
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(); |