From 0468f8deccb15a7940bd8557fcb76bdd5abce306 Mon Sep 17 00:00:00 2001 From: Psyray Date: Tue, 16 Jul 2019 01:32:21 +0200 Subject: [PATCH] Add doctrine time support in datetime column --- Controller/DatatableController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Controller/DatatableController.php b/Controller/DatatableController.php index d92e7a70..fcbd551e 100644 --- a/Controller/DatatableController.php +++ b/Controller/DatatableController.php @@ -125,6 +125,7 @@ private function normalizeValue($originalTypeOfField, $value) { switch ($originalTypeOfField) { case Type::DATETIME: + case Type::TIME: $value = new DateTime($value); break; case Type::BOOLEAN: