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_bug.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_bug.cgi')
-rwxr-xr-x | show_bug.cgi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/show_bug.cgi b/show_bug.cgi index 782293af5..b3251b9d1 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -57,10 +57,7 @@ my %marks; if ($single) { my $id = $cgi->param('id'); - # Its a bit silly to do the validation twice - that functionality should - # probably move into Bug.pm at some point - ValidateBugID($id); - push @bugs, new Bugzilla::Bug($id); + push @bugs, Bugzilla::Bug->check($id); if (defined $cgi->param('mark')) { foreach my $range (split ',', $cgi->param('mark')) { if ($range =~ /^(\d+)-(\d+)$/) { |