diff options
author | lpsolit%gmail.com <> | 2006-09-04 05:37:01 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-09-04 05:37:01 +0200 |
commit | 4b956c1176381f684567ccc15e1e9c64c5d142fb (patch) | |
tree | a7538e86c8762ccd6b81373ac5c4e010181f0630 /Bugzilla | |
parent | b22bc5090e62d544445288a31bc4b959bac93eef (diff) | |
download | bugzilla-4b956c1176381f684567ccc15e1e9c64c5d142fb.tar.gz bugzilla-4b956c1176381f684567ccc15e1e9c64c5d142fb.tar.xz |
Bug 13534: Remove REMIND and LATER from the default resolution list (only affects new installations) - Patch by Paul <pdemarco@zoominternet.net> r=LpSolit a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/DB.pm | 4 |
1 files changed, 2 insertions, 2 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"], }; ##################################################################### |