projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b639c50
)
Fix DedupeFind cache set call
author
Elliott Eggleston
<ejegg@ejegg.com>
Wed, 10 Aug 2016 20:55:33 +0000
(16:55 -0400)
committer
eileen
<emcnaughton@wikimedia.org>
Wed, 17 Aug 2016 02:22:01 +0000
(14:22 +1200)
set, not get.
CRM/Contact/Page/DedupeFind.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Contact/Page/DedupeFind.php
b/CRM/Contact/Page/DedupeFind.php
index 2555693399a3e18343551e2e78afff90e6fe8dc2..1fa51fdd1832dc37ced14dc70c109d08e1c056fb 100644
(file)
--- 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->
g
et("search_dedupe_dupes_$gid", $foundDupes);
+ $this->
s
et("search_dedupe_dupes_$gid", $foundDupes);
}
else {
$foundDupes = $this->get('dedupe_dupes');