Fix for bug 99209: Display links on dependency tree page for modifying dependent bugs.

Patch by Myk Melez <myk@mozilla.org>.
r=kiko,bbaetz


git-svn-id: svn://10.0.0.236/trunk@115568 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
myk%mozilla.org
2002-03-01 14:03:55 +00:00
parent e1a2bc2fe4
commit df5dcd1798

View File

@@ -221,9 +221,17 @@ sub makeTreeHTML {
$html = "<h3>Bugs that bug $linked_id ".($target eq "blocked" ?
"blocks" : "depends on");
# If there are some bugs in this tree, add a link to view them
# as a bug list, and add another link to edit them on the "change
# several bugs" page if there is more than one and the user has
# "editbugs" privileges.
if ((scalar keys %printed) > 0) {
$html .= ' (<a href="buglist.cgi?bug_id=' . join(',', keys %printed) .
'">view as bug list</a>)';
my $link = "buglist.cgi?bug_id=" . join(',', keys %printed);
$html .= qq~ (<a href="$link">view as bug list</a>~;
if (UserInGroup("editbugs") && (scalar keys %printed) > 1) {
$html .= qq~ | <a href="$link&tweak=1">change several</a>~;
}
$html .= ')';
}
# Provide feedback for omitted bugs