From ae0626cc5a20736ee66b997a86cc692cbd5c90d2 Mon Sep 17 00:00:00 2001 From: JoshuaLicense Date: Sat, 3 Feb 2024 12:41:17 +0000 Subject: [PATCH] fix: fix undefined constant reference --- module/Olcs/view/sections/cases/pages/appeals-stays.phtml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module/Olcs/view/sections/cases/pages/appeals-stays.phtml b/module/Olcs/view/sections/cases/pages/appeals-stays.phtml index a24aacfecb..b77845b56c 100644 --- a/module/Olcs/view/sections/cases/pages/appeals-stays.phtml +++ b/module/Olcs/view/sections/cases/pages/appeals-stays.phtml @@ -49,23 +49,23 @@ if (empty($appeal)){ 'date' => $appeal['decisionDate'], // NB! dateFormat is not an output format, it's an input format, // we need it to convert the date to our standard formats (see list-item.phtml) - 'dateFormat' => \DB_DATE_FORMAT + 'dateFormat' => Common\Module::$dbDateFormat ], [ 'label' => 'Papers due at TC/DTC', 'date' => $appeal['papersDueTcDate'], - 'dateFormat' => \DB_DATE_FORMAT + 'dateFormat' => Common\Module::$dbDateFormat ], [ 'label' => 'Papers sent to TC/DTC', 'date' => $appeal['papersSentTcDate'], - 'dateFormat' => \DB_DATE_FORMAT + 'dateFormat' => Common\Module::$dbDateFormat ], ['label' => 'Papers due at tribunal', 'date' => $appeal['papersDueDate']], [ 'label' => 'Papers sent to tribunal', 'date' => $appeal['papersSentDate'], - 'dateFormat' => \DB_DATE_FORMAT + 'dateFormat' => Common\Module::$dbDateFormat ], ['label' => 'Outcome', 'value' => (isset($appeal['outcome']['description']) ? $appeal['outcome']['description'] : '')],