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

git-svn-id: svn://10.0.0.236/trunk@182474 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2005-10-18 18:47:08 +00:00
parent 290231ac07
commit 3e1ef7ffc7
2 changed files with 18 additions and 12 deletions

View File

@@ -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;
}

View File

@@ -48,6 +48,8 @@ my $current_panel = $cgi->param('section') || 'core';
$current_panel =~ /^([A-Za-z0-9_-]+)$/;
$current_panel = $1;
GetVersionTable();
my $current_module;
my @panels = ();
foreach my $panel (@parampanels) {