diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-08-02 01:28:07 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-08-02 01:28:07 +0200 |
commit | bb18f8a6d560fa141f812dddcf6f6d8fe8b49dbb (patch) | |
tree | 26f113b16dec381e1a259d95ebfb3c2e2bfdeda4 /Bugzilla | |
parent | e214fe83d5ca689771a5c55bc507fc1a7309bf6b (diff) | |
download | bugzilla-bb18f8a6d560fa141f812dddcf6f6d8fe8b49dbb.tar.gz bugzilla-bb18f8a6d560fa141f812dddcf6f6d8fe8b49dbb.tar.xz |
Bug 577956: Bugs which were never confirmed cannot be reopened as UNCONFIRMED
r/a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index ed604d029..57b1904b5 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -48,11 +48,11 @@ use constant STATUS_WORKFLOW => ( ['CONFIRMED', 'RESOLVED'], ['IN_PROGRESS', 'CONFIRMED'], ['IN_PROGRESS', 'RESOLVED'], + ['RESOLVED', 'UNCONFIRMED'], ['RESOLVED', 'CONFIRMED'], ['RESOLVED', 'VERIFIED'], + ['VERIFIED', 'UNCONFIRMED'], ['VERIFIED', 'CONFIRMED'], - # The RESOLVED/VERIFIED to UNCONFIRMED transition is enabled specially - # in the code for bugs that haven't been confirmed. ); sub SETTINGS { |