From 74bf4741bf40d11e05f960d74f2cff977350a490 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Tue, 2 Oct 2018 23:21:30 +0100 Subject: [PATCH] lib/php/db/table.php --- lib/php/db/table.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/php/db/table.php b/lib/php/db/table.php index 94d077c1..8659bb32 100644 --- a/lib/php/db/table.php +++ b/lib/php/db/table.php @@ -859,7 +859,8 @@ Class Table extends nb { // Date, Time according to field->string() behavior } else { - $v = $this->db()->quote($v); +# NB 02.10.18 $v = $this->db()->quote($v); + $v = $field->quote($v); } $equal = $not ? '<>' : $equal; -- 2.47.3