Skip to content

Commit

Permalink
GH-224 Fix vacation min time display (show 24-hour style time)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdziekon committed Jun 24, 2022
1 parent 359c897 commit 77cf954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
$_Lang['skinpath'] = $_User['skinpath'];
$_Lang['PHP_Insert_VacationMinDuration'] = $vacationMinSeconds;
$_Lang['PHP_Insert_VacationComeback'] = $Now + $vacationMinSeconds;
$_Lang['PHP_Insert_VacationComeback'] = date('d.m.Y', $_Lang['PHP_Insert_VacationComeback'])." {$_Lang['atHour']} ".date('h:i:s', $_Lang['PHP_Insert_VacationComeback']);
$_Lang['PHP_Insert_VacationComeback'] = date('d.m.Y', $_Lang['PHP_Insert_VacationComeback'])." {$_Lang['atHour']} ".date('H:i:s', $_Lang['PHP_Insert_VacationComeback']);
$_Lang['PHP_Insert_LanguageOptions'] = [];

foreach ($_Lang['LanguagesAvailable'] as $langKey => $langData) {
Expand Down

0 comments on commit 77cf954

Please sign in to comment.