From: Elliott Eggleston Date: Wed, 10 Aug 2016 20:55:33 +0000 (-0400) Subject: Fix DedupeFind cache set call X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=92241006ccbddd570456165c71e78e2a9fabc6c8;p=civicrm-core.git Fix DedupeFind cache set call set, not get. --- 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');