summaryrefslogtreecommitdiffstats
path: root/showdependencytree.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-02-23 07:02:07 +0100
committerlpsolit%gmail.com <>2006-02-23 07:02:07 +0100
commit48770585552dc34cea6bdeef4147227e85b9225a (patch)
treee11af25b7dcbb45d028e3a5554f3b147ab9c37ec /showdependencytree.cgi
parentca0d3d364bbfbd5fcb65c1153a21469b077ba80e (diff)
downloadbugzilla-48770585552dc34cea6bdeef4147227e85b9225a.tar.gz
bugzilla-48770585552dc34cea6bdeef4147227e85b9225a.tar.xz
Bug 251656: Redesign dependency tree, part 1: fix the tree itself - Patch by André Batosti <batosti@async.com.br> r=myk r=LpSolit a=justdave
Diffstat (limited to 'showdependencytree.cgi')
-rwxr-xr-xshowdependencytree.cgi4
1 files changed, 3 insertions, 1 deletions
diff --git a/showdependencytree.cgi b/showdependencytree.cgi
index 03abb2729..efc26a2b2 100755
--- a/showdependencytree.cgi
+++ b/showdependencytree.cgi
@@ -65,7 +65,7 @@ if ($maxdepth !~ /^\d+$/) { $maxdepth = 0 };
# have to embed a conditional statement into each query.
my $milestone_column = Param('usetargetmilestone') ? "target_milestone" : "''";
-# The greatest depth to which either tree goes.
+# Stores the greatest depth to which either tree goes.
my $realdepth = 0;
# Generate the tree of bugs that this bug depends on and a list of IDs
@@ -148,12 +148,14 @@ sub GetBug {
if (Bugzilla->user->can_see_bug($id)) {
($bug->{'exists'},
$bug->{'status'},
+ $bug->{'resolution'},
$bug->{'summary'},
$bug->{'milestone'},
$bug->{'assignee_id'},
$bug->{'assignee_email'}) = $dbh->selectrow_array(
"SELECT 1,
bug_status,
+ resolution,
short_desc,
$milestone_column,
assignee.userid,