PMCORE-2704

This commit is contained in:
Paula Quispe
2021-01-13 20:00:38 -04:00
parent 3deca546fe
commit 18248b004c

View File

@@ -620,6 +620,8 @@ function applyMaskDateEnvironment(string $date, $mask = '')
if (!empty($date)) {
$date = new DateTime($date);
$result = $date->format($mask);
} else {
$result = $date;
}
return $result;