diff options
author | mkanat%kerio.com <> | 2005-04-12 08:27:57 +0000 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-04-12 08:27:57 +0000 |
commit | 683e10636b80dcf6b9e30fb6c41a64cc5620983d (patch) | |
tree | ff8d50ae319f5832477b071571a2fc365cfb30ae /checksetup.pl | |
parent | Bug 289594 - The table on the email settings page no longer is 100% wide. It ... (diff) | |
download | bugzilla-683e10636b80dcf6b9e30fb6c41a64cc5620983d.tar.gz bugzilla-683e10636b80dcf6b9e30fb6c41a64cc5620983d.tar.bz2 bugzilla-683e10636b80dcf6b9e30fb6c41a64cc5620983d.zip |
Bug 285533: Bugzilla displays inactive enum values
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=wicked, a=justdave
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-x | checksetup.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl index fe30711a4..8e076426d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1756,8 +1756,8 @@ sub PopulateEnumTable ($@) { @my_severities = ('blocker','critical','major','normal','minor', 'trivial','enhancement') if !@my_severities; @my_priorities = ("P1","P2","P3","P4","P5") if !@my_priorities; -@my_opsys = ("---","All","Windows","Mac OS","Linux","Other") if !@my_opsys; -@my_platforms = ("---","All","PC","Macintosh","Other") if !@my_platforms; +@my_opsys = ("All","Windows","Mac OS","Linux","Other") if !@my_opsys; +@my_platforms = ("All","PC","Macintosh","Other") if !@my_platforms; PopulateEnumTable('bug_severity', @my_severities); PopulateEnumTable('priority', @my_priorities); |