Bug 314791: process_bug.cgi should not complain if 'knob' is undefined - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave

git-svn-id: svn://10.0.0.236/trunk@184134 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2005-11-04 09:44:53 +00:00
parent cbf4595289
commit c21fe094db

View File

@@ -120,6 +120,9 @@ scalar(@idlist) || ThrowUserError("no_bugs_chosen");
# Make sure form param 'dontchange' is defined so it can be compared to easily.
$cgi->param('dontchange','') unless defined $cgi->param('dontchange');
# Make sure the 'knob' param is defined; else set it to 'none'.
$cgi->param('knob', 'none') unless defined $cgi->param('knob');
# Validate all timetracking fields
foreach my $field ("estimated_time", "work_time", "remaining_time") {
if (defined $cgi->param($field)) {
@@ -1025,7 +1028,6 @@ if (defined $cgi->param('qa_contact')
}
}
check_form_field_defined($cgi, 'knob');
SWITCH: for ($cgi->param('knob')) {
/^none$/ && do {
last SWITCH;