diff options
author | lpsolit%gmail.com <> | 2005-10-15 00:54:56 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-15 00:54:56 +0000 |
commit | e59214c4ed109f9afd6999f0392399729158d1c9 (patch) | |
tree | ec6879260afdd5e162a928c1f352a20d1d98354c /Bugzilla/Config/BugFields.pm | |
parent | new Lifecycle PNG image that doesn't break libpng. (same image, just re-saved... (diff) | |
download | bugzilla-e59214c4ed109f9afd6999f0392399729158d1c9.tar.gz bugzilla-e59214c4ed109f9afd6999f0392399729158d1c9.tar.bz2 bugzilla-e59214c4ed109f9afd6999f0392399729158d1c9.zip |
Bug 312356: The defaultpriority param should be grouped together with defaultseverity, opsys and platform - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel a=justdave
Diffstat (limited to 'Bugzilla/Config/BugFields.pm')
-rw-r--r-- | Bugzilla/Config/BugFields.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Bugzilla/Config/BugFields.pm b/Bugzilla/Config/BugFields.pm index ac0ef85d9..6c942568f 100644 --- a/Bugzilla/Config/BugFields.pm +++ b/Bugzilla/Config/BugFields.pm @@ -83,6 +83,13 @@ sub get_param_list { }, { + name => 'defaultpriority', + type => 't', + default => 'P2', + checker => \&check_priority + }, + + { name => 'defaultseverity', type => 't', default => 'normal', |