Bugzilla – Attachment 100595 Details for
Bug 24850
Koha::DateUtils ignores offsets in RFC3339 datetimes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24850: Don't fallback when rfc3339 format is passed
Bug-24850-Dont-fallback-when-rfc3339-format-is-pas.patch (text/plain), 1.46 KB, created by
Martin Renvoize (ashimema)
on 2020-03-11 17:57:00 UTC
(
hide
)
Description:
Bug 24850: Don't fallback when rfc3339 format is passed
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2020-03-11 17:57:00 UTC
Size:
1.46 KB
patch
obsolete
>From 80e7c31f23014f6e8fae69bbff088cd2883c9c43 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 11 Mar 2020 17:55:34 +0000 >Subject: [PATCH] Bug 24850: Don't fallback when rfc3339 format is passed > >--- > Koha/DateUtils.pm | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/Koha/DateUtils.pm b/Koha/DateUtils.pm >index cc474a6ddb..a408451b11 100644 >--- a/Koha/DateUtils.pm >+++ b/Koha/DateUtils.pm >@@ -117,7 +117,7 @@ sub dt_from_string { > (?<minute>\d{2}) > : > (?<second>\d{2}) >- (\.\d{1,3})?(([Zz])|((?<offset>[\+|\-])(?<hours>[01][0-9]|2[0-3]):(?<minutes>[0-5][0-9]))) >+ (\.\d{1,3})?(([Zz]$)|((?<offset>[\+|\-])(?<hours>[01][0-9]|2[0-3]):(?<minutes>[0-5][0-9]))) > /xms; > } > elsif ( $date_format eq 'iso' or $date_format eq 'sql' ) { >@@ -141,7 +141,7 @@ sub dt_from_string { > )? > )? > |xms; >- $regex .= $time_re; >+ $regex .= $time_re unless ( $date_format eq 'rfc3339' ); > $fallback_re .= $time_re; > > my %dt_params; >@@ -157,7 +157,7 @@ sub dt_from_string { > if ( $+{offset} ) { > $tz = DateTime::TimeZone->new( name => $+{offset} . $+{hours} . $+{minutes} ); > } >- } elsif ( $date_string =~ $fallback_re ) { >+ } elsif ( ($date_format ne 'rfc3339') && ($date_string =~ $fallback_re) ) { > %dt_params = ( > year => $+{year}, > month => $+{month}, >-- >2.20.1
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 24850
:
100585
|
100586
|
100587
|
100592
|
100593
|
100594
|
100595
|
100678
|
100679
|
100680
|
100681
|
100881
|
100901
|
100902
|
100903
|
100904
|
100905
|
101803
|
101804
|
101805
|
101806
|
101807
|
101808
|
101837
|
101838
|
101839
|
101840
|
101841
|
101842
|
101843
|
101844
|
115851
|
115852
|
115853
|
115854
|
115855
|
115856
|
115857
|
116299
|
116300
|
116301
|
116302
|
116303
|
116304
|
116305
|
116355
|
116356
|
116357
|
116358
|
116359
|
116360
|
116361
|
116511
|
126182
|
126183
|
126184
|
126185
|
126186
|
126187
|
126188
|
126189
|
127231
|
127232
|
127235
|
127236
|
127239
|
127240
|
127241
|
127242
|
127243
|
127244