fix php Parse error

This commit is contained in:
gnieark 2015-12-10 22:42:16 +01:00
parent 1cf5ffb267
commit bedcf84bcf

View File

@ -26,7 +26,7 @@ function generate_numeric_select($start,$end,$selected,$name,$id){
}
$out.=">";
if($select == -1){
if($selected == -1){
for($i=$start; $i <= $end; $i++ ){
$out.='<option value="'.$i.'">'.$i.'</option>';
}