Bugzilla – Attachment 80877 Details for
Bug 21600
t/db_dependent/api/v1/patrons.t is failing with new SQL modes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21600: Use str param instead of dt for output_pref
Bug-21600-Use-str-param-instead-of-dt-for-outputpr.patch (text/plain), 1.15 KB, created by
Jonathan Druart
on 2018-10-18 19:37:37 UTC
(
hide
)
Description:
Bug 21600: Use str param instead of dt for output_pref
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2018-10-18 19:37:37 UTC
Size:
1.15 KB
patch
obsolete
>From 53a4cada095f494d3e1367ba950666acb2c6b7f6 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >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 <jonathan.druart@bugs.koha-community.org> >--- > 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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 21600
:
80875
|
80876
|
80877
|
80898
|
80899