summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 {