From 05530704f45b5b20e8f8279d3fd92580a14c4e4e Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Mon, 23 Nov 2015 21:27:59 -0500 Subject: [PATCH] CRM-13934: Fix for saving dedupe rules in non-English. --- CRM/Contact/Form/DedupeRules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.25.1