Merge pull request #5092 from defrance/patch-1

</option> not present in some select list
This commit is contained in:
Laurent Destailleur 2016-04-29 20:17:56 +02:00
commit db4024035e

View File

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