minor fixes
authoryashodha <yashodha.chaku@webaccessglobal.com>
Mon, 21 Sep 2015 13:31:28 +0000 (19:01 +0530)
committeryashodha <yashodha.chaku@webaccessglobal.com>
Mon, 21 Sep 2015 13:31:28 +0000 (19:01 +0530)
CRM/Contact/Form/DedupeRules.php

index 9550dfc696126e22d0e2ae1818709fef2ba4c0d1..ba98ff999a13c3e932ae6deb61a33806c9e5ac78 100644 (file)
@@ -155,7 +155,7 @@ class CRM_Contact_Form_DedupeRules extends CRM_Admin_Form {
     $errors = array();
     $fieldSelected = FALSE;
     for ($count = 0; $count < self::RULES_COUNT; $count++) {
-        if (!empty($fields["where_$count"]) || ($self->_defaults['is_reserved'] && !empty($self->_defaults["where_$count"]))) {
+      if (!empty($fields["where_$count"]) || ($self->_defaults['is_reserved'] && !empty($self->_defaults["where_$count"]))) {
         $fieldSelected = TRUE;
         break;
       }
@@ -228,7 +228,7 @@ UPDATE civicrm_dedupe_rule_group
     }
 
     // lets skip updating of fields for reserved dedupe group
-    if ($this->_defaults['is_reserved']) {
+    if (isset($this->_defaults['is_reserved'])) {
       CRM_Core_Session::setStatus(ts("The rule '%1' has been saved.", array(1 => $rgDao->title)), ts('Saved'), 'success');
       return;
     }