From: Mathieu Lutfy Date: Tue, 24 Nov 2015 02:27:59 +0000 (-0500) Subject: CRM-13934: Fix for saving dedupe rules in non-English. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=05530704f45b5b20e8f8279d3fd92580a14c4e4e;p=civicrm-core.git CRM-13934: Fix for saving dedupe rules in non-English. --- diff --git a/CRM/Contact/Form/DedupeRules.php b/CRM/Contact/Form/DedupeRules.php index 689558a3e1..30de265dd9 100644 --- a/CRM/Contact/Form/DedupeRules.php +++ b/CRM/Contact/Form/DedupeRules.php @@ -66,7 +66,7 @@ class CRM_Contact_Form_DedupeRules extends CRM_Admin_Form { $this->_defaults['threshold'] = $rgDao->threshold; $this->_contactType = $rgDao->contact_type; - $this->_defaults['used'] = CRM_Utils_Array::key($rgDao->used, $this->_options); + $this->_defaults['used'] = $rgDao->used; $this->_defaults['title'] = $rgDao->title; $this->_defaults['name'] = $rgDao->name; $this->_defaults['is_reserved'] = $rgDao->is_reserved;