From 0c816e462abfeebcea81a3bc8b14fbf84c28b5bf Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Tue, 29 May 2007 16:38:37 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20382330:=20Dependency=20trees=20broken=20w?= =?UTF-8?q?hen=20resolved=20bugs=20are=20hidden=20(regression)=20-=20Patch?= =?UTF-8?q?=20by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin=20=20r=3Djustdave=20a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@227160 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/showdependencytree.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/showdependencytree.cgi b/mozilla/webtools/bugzilla/showdependencytree.cgi index 1010adcd016..861dee859ce 100755 --- a/mozilla/webtools/bugzilla/showdependencytree.cgi +++ b/mozilla/webtools/bugzilla/showdependencytree.cgi @@ -131,7 +131,7 @@ sub GenerateTree { if (!$bugs->{$dep_id}->{'error'} && Bugzilla->user->can_see_bug($dep_id) && (!$maxdepth || $depth <= $maxdepth) - && ($bugs->{$dep_id}->{'isopened'} || !$hide_resolved)) + && ($bugs->{$dep_id}->isopened || !$hide_resolved)) { # Due to AUTOLOAD in Bug.pm, we cannot add 'dependencies' # as a bug object attribute from here.