Skip to content

Commit

Permalink
Fix end date not being set correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcoder87 committed Dec 8, 2024
1 parent 6539325 commit 875c3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/modules/training/views/trainings/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$e = [];
$e['title'] = $this->escape($training->getTitle());
$e['start'] = $training->getDate();
$e['start'] = $training->getEnd();
$e['end'] = $training->getEnd();
$e['color'] = '#C52C66';
$e['url'] = $this->getUrl('training/index/show/id/' . $training->getId());

Expand Down

0 comments on commit 875c3ed

Please sign in to comment.