From 548f01be26fe8e687ef99e07348c31cf791d900a Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Fri, 4 Sep 2020 10:34:40 -0300 Subject: [PATCH] fix: remove deprecated TODO comment --- app/Controllers/Partials/Resource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/Partials/Resource.php b/app/Controllers/Partials/Resource.php index 98deb98..e628f38 100644 --- a/app/Controllers/Partials/Resource.php +++ b/app/Controllers/Partials/Resource.php @@ -82,7 +82,7 @@ public static function getPublicationDate($format = false) if ($date !== '–') { $parts = explode('-', $date); if (count($parts) === 3) { - return date_i18n($format, strtotime($date)); // TODO: Fix this + return date_i18n($format, strtotime($date)); } if (count($parts) === 2) { return date_i18n('F Y', strtotime($date));