summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-10-14 18:58:30 +0200
committerDylan William Hardison <dylan@hardison.net>2018-10-14 18:58:30 +0200
commit7556469b5c1ff1083c408c6d0ef6642122a42def (patch)
tree75fa136b9c05e898f5aec856fd878afb9dffcdbc
parentce00a61057535d49aa0e83181a1d317d7842571b (diff)
downloadbugzilla-7556469b5c1ff1083c408c6d0ef6642122a42def.tar.gz
bugzilla-7556469b5c1ff1083c408c6d0ef6642122a42def.tar.xz
fix bug bluewind reported
-rw-r--r--Bugzilla/Install.pm40
1 files changed, 15 insertions, 25 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index c9935f34d..8bce9b5e7 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -31,31 +31,21 @@ use Bugzilla::Util qw(get_text);
use Bugzilla::Version;
use constant STATUS_WORKFLOW => (
- [ undef, 'UNCONFIRMED' ],
- [ undef, 'NEW' ],
- [ undef, 'ASSIGNED' ],
- [ 'UNCONFIRMED', 'NEW' ],
- [ 'UNCONFIRMED', 'ASSIGNED' ],
- [ 'UNCONFIRMED', 'RESOLVED' ],
- [ 'NEW', 'UNCONFIRMED' ],
- [ 'NEW', 'ASSIGNED' ],
- [ 'NEW', 'RESOLVED' ],
- [ 'ASSIGNED', 'UNCONFIRMED' ],
- [ 'ASSIGNED', 'NEW' ],
- [ 'ASSIGNED', 'RESOLVED' ],
- [ 'REOPENED', 'UNCONFIRMED' ],
- [ 'REOPENED', 'NEW' ],
- [ 'REOPENED', 'ASSIGNED' ],
- [ 'REOPENED', 'RESOLVED' ],
- [ 'RESOLVED', 'UNCONFIRMED' ],
- [ 'RESOLVED', 'REOPENED' ],
- [ 'RESOLVED', 'VERIFIED' ],
- [ 'VERIFIED', 'UNCONFIRMED' ],
- [ 'VERIFIED', 'REOPENED' ],
- [ 'VERIFIED', 'RESOLVED' ],
- [ 'CLOSED', 'UNCONFIRMED' ],
- [ 'CLOSED', 'REOPENED' ],
- [ 'CLOSED', 'RESOLVED' ],
+ [undef, 'UNCONFIRMED'],
+ [undef, 'CONFIRMED'],
+ [undef, 'IN_PROGRESS'],
+ ['UNCONFIRMED', 'CONFIRMED'],
+ ['UNCONFIRMED', 'IN_PROGRESS'],
+ ['UNCONFIRMED', 'RESOLVED'],
+ ['CONFIRMED', 'IN_PROGRESS'],
+ ['CONFIRMED', 'RESOLVED'],
+ ['IN_PROGRESS', 'CONFIRMED'],
+ ['IN_PROGRESS', 'RESOLVED'],
+ ['RESOLVED', 'UNCONFIRMED'],
+ ['RESOLVED', 'CONFIRMED'],
+ ['RESOLVED', 'VERIFIED'],
+ ['VERIFIED', 'UNCONFIRMED'],
+ ['VERIFIED', 'CONFIRMED'],
);
sub SETTINGS {