From 7556469b5c1ff1083c408c6d0ef6642122a42def Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 14 Oct 2018 12:58:30 -0400 Subject: fix bug bluewind reported --- Bugzilla/Install.pm | 40 +++++++++++++++------------------------- 1 file 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 { -- cgit v1.2.3-24-g4f1b