diff options
author | mkanat%bugzilla.org <> | 2009-09-30 10:55:03 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-09-30 10:55:03 +0200 |
commit | ac905a580c68bcf9b4ddaaff636969575aab4c64 (patch) | |
tree | ab9fe5dd41311b851148b0e5b85886e306b29cd5 /Bugzilla | |
parent | dc4608b97cec3af3c7028717da291cd5e238a8d4 (diff) | |
download | bugzilla-ac905a580c68bcf9b4ddaaff636969575aab4c64.tar.gz bugzilla-ac905a580c68bcf9b4ddaaff636969575aab4c64.tar.xz |
Bug 488931: Change the default priority values to be human-readable words instead of P1, P2, etc.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/DB.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index f39eb6511..24c1f24f9 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -65,7 +65,7 @@ use constant ISOLATION_LEVEL => 'REPEATABLE READ'; use constant ENUM_DEFAULTS => { bug_severity => ['blocker', 'critical', 'major', 'normal', 'minor', 'trivial', 'enhancement'], - priority => ["P1","P2","P3","P4","P5"], + priority => ["Highest", "High", "Normal", "Low", "Lowest", "---"], op_sys => ["All","Windows","Mac OS","Linux","Other"], rep_platform => ["All","PC","Macintosh","Other"], bug_status => ["UNCONFIRMED","NEW","ASSIGNED","REOPENED","RESOLVED", |