Fix set a max length for UMR

This commit is contained in:
Laurent Destailleur
2023-02-22 01:35:15 +01:00
parent 6c3ddc15f2
commit 00032ac970
2 changed files with 5 additions and 2 deletions

View File

@@ -2632,7 +2632,7 @@ function dol_print_date($time, $format = '', $tzoutput = 'auto', $outputlangs =
$format = '%Y%m%d%H%M%S';
} elseif ($format == 'dayhourlogsmall') {
// Format not sensitive to language
$format = '%Y%m%d%H%M';
$format = '%y%m%d%H%M';
} elseif ($format == 'dayhourldap') {
$format = '%Y%m%d%H%M%SZ';
} elseif ($format == 'dayhourxcard') {