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
1bd2ab41
Commit
1bd2ab41
authored
Jan 15, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checked in patch by Dawn Endico <endico@mozilla.org> -- when
reassigning by component, reassign the qa contact too.
parent
9bbdda13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
process_bug.cgi
process_bug.cgi
+11
-0
No files found.
process_bug.cgi
View file @
1bd2ab41
...
...
@@ -325,6 +325,17 @@ SWITCH: for ($::FORM{'knob'}) {
my
$newid
=
DBNameToIdAndCheck
(
$newname
,
1
);
DoComma
();
$::query
.=
"assigned_to = $newid"
;
if
(
Param
(
"useqacontact"
))
{
SendSQL
(
"select initialqacontact from components where program="
.
SqlQuote
(
$::FORM
{
'product'
})
.
" and value="
.
SqlQuote
(
$::FORM
{
'component'
}));
my
$qacontact
=
FetchOneColumn
();
if
(
defined
$qacontact
&&
$qacontact
ne
""
)
{
my
$newqa
=
DBNameToIdAndCheck
(
$qacontact
,
1
);
DoComma
();
$::query
.=
"qa_contact = $newqa"
;
}
}
last
SWITCH
;
};
/^reopen$/
&&
CheckonComment
(
"reopen"
)
&&
do
{
...
...
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