minor fix range input

This commit is contained in:
fbsanchez 2020-07-07 11:54:55 +02:00
parent 80015a8691
commit 98dc5f1796
1 changed files with 5 additions and 0 deletions

View File

@ -1646,6 +1646,7 @@ function html_print_input_range(
$output .= ' value="'.$value.'" ';
}
$output .= ' name="'.$name.'" ';
$output .= ' id="'.$id.'" ';
$output .= ' min="'.$min.'" ';
$output .= ' max="'.$max.'" ';
@ -1655,6 +1656,10 @@ function html_print_input_range(
$output .= ' />';
if ($return === false) {
echo $return;
}
return $output;
}