Code cleanups

This commit is contained in:
Jamie Cameron
2020-11-01 22:11:11 -08:00
parent 8e3adcc605
commit ed59ce2984

View File

@@ -2465,8 +2465,8 @@ Returns HTML for selecting a date
=cut
sub date_input
{
local ($d, $m, $y, $prefix) = @_;
local $rv;
my ($d, $m, $y, $prefix) = @_;
my $rv;
$rv .= &ui_textbox($prefix."d", $d, 3)."/";
$rv .= &ui_select($prefix."m", $m,
[ map { [ $_, $text{"smonth_".$_} ] } (1..12) ])."/";