Bug 9508: Standardize the dateformat value from C4::Auth
[koha.git] / acqui / lateorders.pl
index 6dea529..7c2b3f3 100755 (executable)
@@ -86,10 +86,10 @@ my $estimateddeliverydateto_dt = $estimateddeliverydateto
 
 # Format the output of "date from" and "date to"
 if ($estimateddeliverydatefrom_dt) {
-    $estimateddeliverydatefrom = output_pref($estimateddeliverydatefrom_dt, undef, 1);
+    $estimateddeliverydatefrom = output_pref($estimateddeliverydatefrom_dt, undef, undef, 1);
 }
 if ($estimateddeliverydateto_dt) {
-    $estimateddeliverydateto = output_pref($estimateddeliverydateto_dt, undef, 1);
+    $estimateddeliverydateto = output_pref($estimateddeliverydateto_dt, undef, undef, 1);
 }
 
 my $branch     = $input->param('branch');