From 4c7de2125c21e37c6f77c8d5a7982adc07bfd8c4 Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Tue, 10 Jan 2017 12:46:21 -0500 Subject: [PATCH] CRM-19847: ensure we get all parts of the query, not just the values --- CRM/Contact/Page/DedupeFind.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contact/Page/DedupeFind.php b/CRM/Contact/Page/DedupeFind.php index ce63fe7cc6..2ee758a8eb 100644 --- a/CRM/Contact/Page/DedupeFind.php +++ b/CRM/Contact/Page/DedupeFind.php @@ -68,7 +68,7 @@ class CRM_Contact_Page_DedupeFind extends CRM_Core_Page_Basic { 'gid' => $gid, 'limit' => $limit ); - $this->assign('urlQuery', implode('&', $urlQry)); + $this->assign('urlQuery', CRM_Utils_System::makeQueryString($urlQry)); $session = CRM_Core_Session::singleton(); $contactIds = $session->get('selectedSearchContactIds'); -- 2.25.1