diff --git a/src/I18n/Time.php b/src/I18n/Time.php index 913b248ed5e..ff551b367c2 100644 --- a/src/I18n/Time.php +++ b/src/I18n/Time.php @@ -656,12 +656,13 @@ public static function listTimezones($filter = null, $country = null, $options = 'group' => $options, ]; } - $options = array_merge([ + $defaults = [ 'group' => true, 'abbr' => false, 'before' => ' - ', 'after' => null, - ], $options); + ]; + $options += $defaults; $group = $options['group']; $regex = null;