Update functions.inc.php

Instead of showing dates like 19 November 2023, I added a dot to display: 19. November 2023 (looks more professional I would say).
This commit is contained in:
OSWorX 2023-09-25 13:02:49 +02:00 committed by GitHub
parent c5b5dd0b8a
commit 40897e43e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -796,7 +796,7 @@ function format_date($original, $show=null, $format=null)
$print.= $lang['day'][ $date->format('w') ].' ';
if (in_array('day', $show))
$print.= $date->format('j').' ';
$print.= $date->format('j').'. ';
if (in_array('month', $show))
$print.= $lang['month'][ $date->format('n') ].' ';