mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
fix bug with datetime
This commit is contained in:
parent
3d797c95ca
commit
605f198d8c
@ -167,8 +167,12 @@ function twig_push_filter($array, $value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function twig_date_filter($date, $format) {
|
function twig_date_filter($date, $format) {
|
||||||
$date = new DateTime($date, new DateTimeZone('UTC'));
|
if (is_numeric($date)) {
|
||||||
return $date->format($format);
|
$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) {
|
function twig_hasPermission_filter($mod, $permission, $board = null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user