From 4b956c1176381f684567ccc15e1e9c64c5d142fb Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 4 Sep 2006 03:37:01 +0000 Subject: Bug 13534: Remove REMIND and LATER from the default resolution list (only affects new installations) - Patch by Paul r=LpSolit a=myk --- Bugzilla/DB.pm | 4 ++-- contrib/gnats2bz.pl | 2 +- docs/images/bzLifecycle.xml | 4 +--- template/en/default/global/field-descs.none.tmpl | 2 -- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 9378054b3..077f93cf7 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -68,8 +68,8 @@ use constant ENUM_DEFAULTS => { rep_platform => ["All","PC","Macintosh","Other"], bug_status => ["UNCONFIRMED","NEW","ASSIGNED","REOPENED","RESOLVED", "VERIFIED","CLOSED"], - resolution => ["","FIXED","INVALID","WONTFIX","LATER","REMIND", - "DUPLICATE","WORKSFORME","MOVED"], + resolution => ["","FIXED","INVALID","WONTFIX", "DUPLICATE","WORKSFORME", + "MOVED"], }; ##################################################################### diff --git a/contrib/gnats2bz.pl b/contrib/gnats2bz.pl index 7a509682e..95ae32ad9 100644 --- a/contrib/gnats2bz.pl +++ b/contrib/gnats2bz.pl @@ -649,7 +649,7 @@ sub write_bugs { } } elsif ($pr_data{"State"} eq "suspended") { $bug_status = "RESOLVED"; - $resolution = "LATER"; + $resolution = "WONTFIX"; } else { $bug_status = "NEW"; $resolution = ""; diff --git a/docs/images/bzLifecycle.xml b/docs/images/bzLifecycle.xml index d4c33c96c..1adc6b70c 100644 --- a/docs/images/bzLifecycle.xml +++ b/docs/images/bzLifecycle.xml @@ -1118,9 +1118,7 @@ possession# DUPLICATE WONTFIX WORKSFORME - INVALID - REMIND - LATER# + INVALID# diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl index f7600dc0d..254bfef1d 100644 --- a/template/en/default/global/field-descs.none.tmpl +++ b/template/en/default/global/field-descs.none.tmpl @@ -91,8 +91,6 @@ [% resolution_descs = { "FIXED" => "FIXED", "INVALID" => "INVALID", "WONTFIX" => "WONTFIX", - "LATER" => "LATER", - "REMIND" => "REMIND", "DUPLICATE" => "DUPLICATE", "WORKSFORME" => "WORKSFORME", "MOVED" => "MOVED", -- cgit v1.2.3-24-g4f1b