Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
8bc3038d
Commit
8bc3038d
authored
Mar 01, 2002
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 99209: Display links on dependency tree page for modifying dependent bugs.
Patch by Myk Melez <myk@mozilla.org>. r=kiko,bbaetz
parent
840a878b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
showdependencytree.cgi
showdependencytree.cgi
+10
-2
No files found.
showdependencytree.cgi
View file @
8bc3038d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment