From 1a6764cbc32a11b24655a21a5fbea3df8a16e5b1 Mon Sep 17 00:00:00 2001 From: Mathieu <mpmathieu.pnr@gmail.com> Date: Wed, 8 Sep 2021 17:52:28 +0200 Subject: [PATCH] FIX #18170 TIME 2:00 fix sector error when accent in address --- src/app/contact/controllers/ContactController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/controllers/ContactController.php b/src/app/contact/controllers/ContactController.php index 9773229aece..889d8c9f2c9 100755 --- a/src/app/contact/controllers/ContactController.php +++ b/src/app/contact/controllers/ContactController.php @@ -1963,7 +1963,7 @@ class ContactController } if (!empty($args['addressStreet'])) { - $where[] = 'address_street = ?'; + $where[] = 'unaccent(address_street) ilike unaccent(?)'; $data[] = strtoupper($args['addressStreet']); } else { $where[] = 'address_street is null'; @@ -1977,7 +1977,7 @@ class ContactController } if (!empty($args['addressTown'])) { - $where[] = 'address_town = ?'; + $where[] = 'unaccent(address_town) ilike unaccent(?)'; $data[] = strtoupper($args['addressTown']); } else { $where[] = 'address_town is null'; -- GitLab