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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
148d7cc3
Commit
148d7cc3
authored
Mar 29, 2000
by
dmose%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding a 'can confirm' radiobutton to 'reassign by component'
parent
fb70f631
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
bug_form.pl
bug_form.pl
+3
-0
process_bug.cgi
process_bug.cgi
+3
-0
No files found.
bug_form.pl
View file @
148d7cc3
...
...
@@ -440,6 +440,9 @@ if ($canedit || $::userid == $assignedtoid ||
$knum
++
;
print
"<INPUT TYPE=radio NAME=knob VALUE=reassignbycomponent>
Reassign bug to owner of selected component<br>\n"
;
if
(
$status
eq
$::unconfirmedstate
&&
(
$canconfirm
||
$canedit
))
{
print
" <INPUT TYPE=checkbox NAME=compconfirm> and confirm bug (change status to <b>NEW</b>)<BR>"
;
}
$knum
++
;
}
else
{
print
"<INPUT TYPE=radio NAME=knob VALUE=reopen> Reopen bug<br>\n"
;
...
...
process_bug.cgi
View file @
148d7cc3
...
...
@@ -443,6 +443,9 @@ SWITCH: for ($::FORM{'knob'}) {
PuntTryAgain
(
"You must specify a component whose owner should "
.
"get assigned these bugs."
);
}
if
(
$::FORM
{
'compconfirm'
})
{
DoConfirm
();
}
ChangeStatus
(
'NEW'
);
SendSQL
(
"select initialowner from components where program="
.
SqlQuote
(
$::FORM
{
'product'
})
.
" and value="
.
...
...
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