</option> not present in some select list

This commit is contained in:
BENKE Charlie 2016-04-23 20:17:45 +02:00 committed by Laurent Destailleur
parent f5a541d469
commit 31a9acc77d

View File

@ -805,6 +805,7 @@ class FormOther
$select_week .= '<option value="'.$key.'">';
}
$select_week .= $val;
$select_week .= '</option>';
}
$select_week .= '</select>';
return $select_week;
@ -844,6 +845,7 @@ class FormOther
$select_month .= '<option value="'.$key.'">';
}
$select_month .= $val;
$select_month .= '</option>';
}
$select_month .= '</select>';
return $select_month;