From: Nicolas Boisselier Date: Tue, 2 Oct 2018 22:21:30 +0000 (+0100) Subject: lib/php/db/table.php X-Git-Url: https://git.nbdom.net/?a=commitdiff_plain;h=74bf4741bf40d11e05f960d74f2cff977350a490;p=nb.git lib/php/db/table.php --- 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;