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
f0139c8c
Commit
f0139c8c
authored
Oct 31, 2002
by
bugreport%peshkin.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 175838 Reopening a bug does not clear resolution, nor does selecting 'clear resolution'
patch by jeff.hedlund@matrixsi.com 2xr=gerv
parent
1b19ddfe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
process_bug.cgi
process_bug.cgi
+4
-2
No files found.
process_bug.cgi
View file @
f0139c8c
...
@@ -519,7 +519,8 @@ sub DoConfirm {
...
@@ -519,7 +519,8 @@ sub DoConfirm {
sub
ChangeStatus
{
sub
ChangeStatus
{
my
(
$str
)
=
(
@_
);
my
(
$str
)
=
(
@_
);
if
(
$str
ne
$::FORM
{
'dontchange'
})
{
if
(
!
$::FORM
{
'dontchange'
}
||
(
$str
ne
$::FORM
{
'dontchange'
}))
{
DoComma
();
DoComma
();
if
(
$::FORM
{
knob
}
eq
'reopen'
)
{
if
(
$::FORM
{
knob
}
eq
'reopen'
)
{
# When reopening, we need to check whether the bug was ever
# When reopening, we need to check whether the bug was ever
...
@@ -571,7 +572,8 @@ sub ChangeStatus {
...
@@ -571,7 +572,8 @@ sub ChangeStatus {
sub
ChangeResolution
{
sub
ChangeResolution
{
my
(
$str
)
=
(
@_
);
my
(
$str
)
=
(
@_
);
if
(
$str
ne
$::FORM
{
'dontchange'
})
{
if
(
!
$::FORM
{
'dontchange'
}
||
(
$str
ne
$::FORM
{
'dontchange'
}))
{
DoComma
();
DoComma
();
$::query
.=
"resolution = "
.
SqlQuote
(
$str
);
$::query
.=
"resolution = "
.
SqlQuote
(
$str
);
}
}
...
...
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