diff options
author | mkanat%bugzilla.org <> | 2008-06-30 04:57:54 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-06-30 04:57:54 +0200 |
commit | c1ca86053ed276aa05eac8468cea61785629ac5e (patch) | |
tree | 836d5cae869dc47008b16bccb1de47320a36fcc8 /showdependencygraph.cgi | |
parent | 9ed763d945ffe2a468871d4731f3bd001caab21c (diff) | |
download | bugzilla-c1ca86053ed276aa05eac8468cea61785629ac5e.tar.gz bugzilla-c1ca86053ed276aa05eac8468cea61785629ac5e.tar.xz |
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 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index f7977446e..327f73c9d 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -135,8 +135,8 @@ if ($display eq 'doall') { } } else { foreach my $i (split('[\s,]+', $cgi->param('id'))) { - ValidateBugID($i); - $baselist{$i} = 1; + my $bug = Bugzilla::Bug->check($i); + $baselist{$bug->id} = 1; } my @stack = keys(%baselist); |