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
36feed94
Commit
36feed94
authored
Mar 16, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a "send mail to bug owners" link (under circumstances where it
seems useful and appropriate.)
parent
7799c678
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
buglist.cgi
buglist.cgi
+14
-0
No files found.
buglist.cgi
View file @
36feed94
...
...
@@ -1006,6 +1006,7 @@ my @bugarray;
my
%
prodhash
;
my
%
statushash
;
my
$buggroupset
=
""
;
my
%
ownerhash
;
my
$pricol
=
-
1
;
my
$sevcol
=
-
1
;
...
...
@@ -1073,6 +1074,9 @@ while (@row = FetchSQLData()) {
if
(
!
defined
$value
)
{
next
;
}
if
(
$c
eq
"owner"
)
{
$ownerhash
{
$value
}
=
1
;
}
if
(
$::needquote
{
$c
})
{
$value
=
html_quote
(
$value
);
}
else
{
...
...
@@ -1382,6 +1386,16 @@ if ($count > 0) {
print
"<NOBR><A HREF=\"buglist.cgi?$fields$orderpart&tweak=1\">"
;
print
"Change several bugs at once</A></NOBR>\n"
;
}
my
@owners
=
sort
(
keys
(
%
ownerhash
));
if
(
@owners
>
1
&&
UserInGroup
(
"editbugs"
))
{
my
$suffix
=
Param
(
'emailsuffix'
);
if
(
$suffix
ne
""
)
{
map
(
s/$/$suffix/
,
@owners
);
}
my
$list
=
join
(
','
,
@owners
);
print
qq{ \n}
;
print
qq{<NOBR><A HREF="mailto:$list">Send mail to bug owners</A></NOBR>\n}
;
}
print
qq{ \n}
;
print
qq{<NOBR><A HREF="query.cgi?$::buffer">Edit this query</A></NOBR>\n}
;
print
"</FORM>\n"
;
...
...
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