Closed
Bug 577037
Opened 15 years ago
Closed 15 years ago
convert-workflow causes IN_PROGRESS to have a lower sortkey than CONFIRMED
Categories
(Bugzilla :: Installation & Upgrading, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 4.0
People
(Reporter: mkanat, Assigned: mkanat)
Details
Attachments
(1 file)
|
1.07 KB,
patch
|
LpSolit
:
review+
|
Details | Diff | Splinter Review |
Bugs will default to IN_PROGRESS instead of CONFIRMED, on enter_bug.cgi, if you used convert-workflow, because REOPENED gets renamed to CONFIRMED before NEW gets renamed to CONFIRMED. So basically, CONFIRMED has all the properties of REOPENED instead of the properties of NEW.
Flags: blocking4.0+
| Assignee | ||
Comment 1•15 years ago
|
||
Comment 2•15 years ago
|
||
Comment on attachment 456130 [details] [diff] [review]
v1
>+my @translation = (
>+ [NEW => 'CONFIRMED'],
>+ [ASSIGNED => 'IN_PROGRESS'],
>+ [REOPENED => 'CONFIRMED'],
>+ [CLOSED => 'VERIFIED'],
> );
I know Perl treats => as commas, but this would IMO be less confusing as ['NEW', 'CONFIRMED'], ['ASSIGNED', 'IN_PROGRESS'], etc... Otherwise looks good. r=LpSolit
Attachment #456130 -
Flags: review?(LpSolit) → review+
Updated•15 years ago
|
Flags: approval+
| Assignee | ||
Comment 3•15 years ago
|
||
Thanks. :-) I thought the "action" of @translations was clearer with the =>.
| Assignee | ||
Comment 4•15 years ago
|
||
Committing to: bzr+ssh://bzr.mozilla.org/bugzilla/trunk/
modified contrib/convert-workflow.pl
Committed revision 7282.
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•