Remove never-true if
authorEileen McNaughton <emcnaughton@wikimedia.org>
Sat, 18 Mar 2023 01:55:10 +0000 (14:55 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Sat, 18 Mar 2023 22:15:48 +0000 (11:15 +1300)
isProfile is always false

CRM/Dedupe/BAO/DedupeRuleGroup.php

index 09c7ea6c0315cb689189d5d4651d9e682e859cc7..0feb3f5e0abb08f53c76f3b3291797172f663b0f 100644 (file)
@@ -215,27 +215,6 @@ class CRM_Dedupe_BAO_DedupeRuleGroup extends CRM_Dedupe_DAO_DedupeRuleGroup {
         }
       }
 
-      if ($isProfile) {
-        $fields = array_merge($fields, [
-          'group' => [
-            'title' => ts('Group(s)'),
-            'name' => 'group',
-          ],
-          'tag' => [
-            'title' => ts('Tag(s)'),
-            'name' => 'tag',
-          ],
-          'note' => [
-            'title' => ts('Note'),
-            'name' => 'note',
-          ],
-          'communication_style_id' => [
-            'title' => ts('Communication Style'),
-            'name' => 'communication_style_id',
-          ],
-        ]);
-      }
-
       //Sorting fields in alphabetical order(CRM-1507)
       $fields = CRM_Utils_Array::crmArraySortByField($fields, 'title');