mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 03:09:58 +03:00
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:
parent
c5b5dd0b8a
commit
40897e43e2
1 changed files with 1 additions and 1 deletions
|
@ -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') ].' ';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue