1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-27 17:00:52 +01:00

Merge pull request #749 from vichan-devel/RealAngeleno-datetime

fix bug with datetime
This commit is contained in:
Lorenzo Yario 2024-05-17 19:03:51 -07:00 committed by GitHub
commit 055d31d2db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -167,8 +167,12 @@ function twig_push_filter($array, $value) {
}
function twig_date_filter($date, $format) {
$date = new DateTime($date, new DateTimeZone('UTC'));
return $date->format($format);
if (is_numeric($date)) {
$date = new DateTime("@$date", new DateTimeZone('UTC'));
} else {
$date = new DateTime($date, new DateTimeZone('UTC'));
}
return $date->format($format);
}
function twig_hasPermission_filter($mod, $permission, $board = null) {