From 53a4cada095f494d3e1367ba950666acb2c6b7f6 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 18 Oct 2018 16:36:45 -0300 Subject: [PATCH] Bug 21600: Use str param instead of dt for output_pref Signed-off-by: Jonathan Druart --- Koha/REST/V1/Patrons.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/REST/V1/Patrons.pm b/Koha/REST/V1/Patrons.pm index 8d298a0aab..5e8e398eac 100644 --- a/Koha/REST/V1/Patrons.pm +++ b/Koha/REST/V1/Patrons.pm @@ -367,11 +367,11 @@ sub _to_model { } if ( exists $patron->{lastseen} ) { - $patron->{lastseen} = output_pref({ dt => dt_from_string( $patron->{lastseen} ), dateformat => 'sql' }); + $patron->{lastseen} = output_pref({ str => $patron->{lastseen}, dateformat => 'sql' }); } if ( exists $patron->{updated_on} ) { - $patron->{updated_on} = output_pref({ dt => dt_from_string( $patron->{updated_on} ), dateformat => 'sql' }); + $patron->{updated_on} = output_pref({ str => $patron->{updated_on}, dateformat => 'sql' }); } return $patron; -- 2.11.0