From c8f4facc4e236d4237dfc35bedf35598eaa0893a Mon Sep 17 00:00:00 2001 From: jitendrapurohit Date: Mon, 23 Aug 2021 17:59:20 +0530 Subject: [PATCH] Fix fatal error on dedupe screen --- CRM/Contact/Page/AJAX.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contact/Page/AJAX.php b/CRM/Contact/Page/AJAX.php index d2de1806a4..86dd300d90 100644 --- a/CRM/Contact/Page/AJAX.php +++ b/CRM/Contact/Page/AJAX.php @@ -578,8 +578,8 @@ LIMIT {$offset}, {$rowCount} 'src_email' => 'ce2.email', 'dst_postcode' => 'ca1.postal_code', 'src_postcode' => 'ca2.postal_code', - 'dst_street' => 'ca1.street', - 'src_street' => 'ca2.street', + 'dst_street' => 'ca1.street_address', + 'src_street' => 'ca2.street_address', ]; foreach ($mappings as $key => $dbName) { -- 2.25.1