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

Commit

Permalink
fix: resolve missing constant (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored Feb 5, 2024
1 parent b9eb6b7 commit 4e79301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/Olcs/src/Table/Tables/piHearingReadOnly.table.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
array(
'title' => 'Date of PI',
'formatter' => function ($data) {
$date = date(\DATE_FORMAT, strtotime($data['hearingDate']));
$date = date(Common\Module::$dateFormat, strtotime($data['hearingDate']));
$url = $this->generateUrl(
['action' => 'edit', 'id' => $data['id'], 'pi' => $data['pi']['id']],
'case_pi_hearing', true
Expand Down

0 comments on commit 4e79301

Please sign in to comment.