diff options
author | lpsolit%gmail.com <> | 2005-10-19 03:47:08 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-19 03:47:08 +0200 |
commit | 6372dbd5d9f79a86989897a14647ef5a4b0363eb (patch) | |
tree | 902d7c71a4078a1e155b2eef73deb5efda870c9f /Bugzilla | |
parent | 8d67e86a56de870d2a76f0bc5d0dfa53af664a73 (diff) | |
download | bugzilla-6372dbd5d9f79a86989897a14647ef5a4b0363eb.tar.gz bugzilla-6372dbd5d9f79a86989897a14647ef5a4b0363eb.tar.xz |
Bug 297593: defaultpriority, defaultseverity, defaultplatform and defaultopsys parameters in editparams.cgi should be a dropdown menu - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Config/BugFields.pm | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/Bugzilla/Config/BugFields.pm b/Bugzilla/Config/BugFields.pm index 6c942568f..17b79941d 100644 --- a/Bugzilla/Config/BugFields.pm +++ b/Bugzilla/Config/BugFields.pm @@ -84,30 +84,34 @@ sub get_param_list { { name => 'defaultpriority', - type => 't', - default => 'P2', + type => 's', + choices => \@::legal_priority, + default => $::legal_priority[-1], checker => \&check_priority }, { name => 'defaultseverity', - type => 't', - default => 'normal', + type => 's', + choices => \@::legal_severity, + default => $::legal_severity[-1], checker => \&check_severity }, { - name => 'defaultplatform', - type => 't', - default => '', - checker => \&check_platform + name => 'defaultplatform', + type => 's', + choices => ['', @::legal_platform], + default => '', + checker => \&check_platform }, { - name => 'defaultopsys', - type => 't', - default => '', - checker => \&check_opsys + name => 'defaultopsys', + type => 's', + choices => ['', @::legal_opsys], + default => '', + checker => \&check_opsys } ); return @param_list; } |