diff options
author | lpsolit%gmail.com <> | 2006-02-23 06:02:07 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-02-23 06:02:07 +0000 |
commit | 48770585552dc34cea6bdeef4147227e85b9225a (patch) | |
tree | e11af25b7dcbb45d028e3a5554f3b147ab9c37ec /showdependencytree.cgi | |
parent | Bug 316127: Implement an infrastructure to link to the documentation - Patch ... (diff) | |
download | bugzilla-48770585552dc34cea6bdeef4147227e85b9225a.tar.gz bugzilla-48770585552dc34cea6bdeef4147227e85b9225a.tar.bz2 bugzilla-48770585552dc34cea6bdeef4147227e85b9225a.zip |
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-x | showdependencytree.cgi | 4 |
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, |