Fixed issue with the timezone not being applied in Cake\I18n\Time\timeAgoInWords().
@@ -272,6 +272,10 @@ class Time extends Carbon implements JsonSerializable
}
+ if ($timezone) {
+ $this->timezone($timezone);
+ }
+
$now = $from->format('U');
$inSeconds = $this->format('U');
$backwards = ($inSeconds > $now);