From: Frédéric Buclin Date: Tue, 16 Feb 2016 19:34:18 +0000 (+0100) Subject: Fix bustage X-Git-Tag: release-5.1.1~82 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dad451b506a02669c8220f668aadafddbd58cf40;p=thirdparty%2Fbugzilla.git Fix bustage --- diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 6750cef79d..83224dfd74 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -148,7 +148,8 @@ if ($display eq 'web') { # This is the default: a tree instead of a spider web. else { my @blocker_stack = @stack; - my $hide_resolved = $cgi->param('hide_resolved'); + my $hide_resolved = $cgi->param('hide_resolved'); + foreach my $id (@blocker_stack) { my $blocker_ids = Bugzilla::Bug::EmitDependList('blocked', 'dependson', $id, $hide_resolved); foreach my $blocker_id (@$blocker_ids) {