diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2016-02-16 20:34:18 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-02-16 20:34:18 +0100 |
commit | dad451b506a02669c8220f668aadafddbd58cf40 (patch) | |
tree | 09ad0bd64dde4ef8f2335da681756587db00cdbf | |
parent | 88a60383f6c804668079da938ab7c2913415dbfd (diff) | |
download | bugzilla-dad451b506a02669c8220f668aadafddbd58cf40.tar.gz bugzilla-dad451b506a02669c8220f668aadafddbd58cf40.tar.xz |
Fix bustage
-rwxr-xr-x | showdependencygraph.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 6750cef79..83224dfd7 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) { |