<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -bu ./lib/DateTime.pm~ ./lib/DateTime.pm
--- ./lib/DateTime.pm~	2017-08-21 05:35:46.000000000 +0200
+++ ./lib/DateTime.pm	2017-12-20 16:31:21.000000000 +0100
@@ -201,11 +201,12 @@
         ? $p{time_zone}
         : DateTime::TimeZone-&gt;new( name =&gt; $p{time_zone} )
     );
+    my @date = @p{qw( year month day )};
+    $self-&gt;{local_rd_days} = $class-&gt;_ymd2rd( @date );
 
-    $self-&gt;{local_rd_days} = $class-&gt;_ymd2rd( @p{qw( year month day )} );
-
+    my @time = @p{qw( hour minute second )};
     $self-&gt;{local_rd_secs}
-        = $class-&gt;_time_as_seconds( @p{qw( hour minute second )} );
+        = $class-&gt;_time_as_seconds( @time );
 
     $self-&gt;{offset_modifier} = 0;
 
</pre></body></html>