From d924b14c13fa1968d22a0d655514ce5796bdc49a Mon Sep 17 00:00:00 2001 From: Josh d'Entremont Date: Thu, 26 Sep 2024 13:43:17 -0300 Subject: [PATCH] hopefully the final code fix --- src/Plugin/Field/FieldFormatter/EDTFFormatter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugin/Field/FieldFormatter/EDTFFormatter.php b/src/Plugin/Field/FieldFormatter/EDTFFormatter.php index 118117b..5a11327 100644 --- a/src/Plugin/Field/FieldFormatter/EDTFFormatter.php +++ b/src/Plugin/Field/FieldFormatter/EDTFFormatter.php @@ -444,7 +444,7 @@ protected function formatDate($edtf_text) { } else { $formatted_date = t("@date", [ - "@date" => implode(self::DELIMITERS[$settings['date_separator']], array_filter($parts_in_order)) + "@date" => implode(self::DELIMITERS[$settings['date_separator']], array_filter($parts_in_order)), ]); }