Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: fix undefined constant reference (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored Feb 3, 2024
1 parent 9ccf45b commit c2a6623
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions module/Olcs/view/sections/cases/pages/appeals-stays.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -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'] : '')],
Expand Down

0 comments on commit c2a6623

Please sign in to comment.