From 92241006ccbddd570456165c71e78e2a9fabc6c8 Mon Sep 17 00:00:00 2001 From: Elliott Eggleston Date: Wed, 10 Aug 2016 16:55:33 -0400 Subject: [PATCH] Fix DedupeFind cache set call set, not get. --- CRM/Contact/Page/DedupeFind.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CRM/Contact/Page/DedupeFind.php b/CRM/Contact/Page/DedupeFind.php index 2555693399..1fa51fdd18 100644 --- a/CRM/Contact/Page/DedupeFind.php +++ b/CRM/Contact/Page/DedupeFind.php @@ -35,6 +35,7 @@ class CRM_Contact_Page_DedupeFind extends CRM_Core_Page_Basic { protected $_rgid; protected $_mainContacts; protected $_gid; + protected $action; /** * Get BAO Name. @@ -158,7 +159,7 @@ class CRM_Contact_Page_DedupeFind extends CRM_Core_Page_Basic { if (!$foundDupes) { $foundDupes = CRM_Dedupe_Finder::dupes($rgid, $contactIds); } - $this->get("search_dedupe_dupes_$gid", $foundDupes); + $this->set("search_dedupe_dupes_$gid", $foundDupes); } else { $foundDupes = $this->get('dedupe_dupes'); -- 2.25.1