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

fix: fix undefined constant reference #62

Merged
merged 1 commit into from
Feb 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading