Fixes Jenkins warnings
authorfrancescbassas <francesc@babu.cat>
Wed, 27 Jul 2016 14:55:57 +0000 (16:55 +0200)
committerGitHub <noreply@github.com>
Wed, 27 Jul 2016 14:55:57 +0000 (16:55 +0200)
CRM/Contact/BAO/ContactType.php

index d9193f9ba4697994bd5f8f3a4b0fc6a16335d016..a8d318f1ca812889db339773b95c3557582b2e2d 100644 (file)
@@ -904,8 +904,8 @@ WHERE extends = %1 AND " . implode(" OR ", $subTypeClause);
     CRM_Core_DAO::dropTriggers($tableName);
 
     foreach ($subtypesToPreserve as $subtypeToPreserve) {
-     $subtypeToPreserve = CRM_Utils_Type::escape($subtypeToPreserve, 'String');
-     $subtypesToPreserveClause[] = "(civicrm_contact.contact_sub_type NOT LIKE '%" . CRM_Core_DAO::VALUE_SEPARATOR . $subtypeToPreserve . CRM_Core_DAO::VALUE_SEPARATOR . "%')";
+      $subtypeToPreserve = CRM_Utils_Type::escape($subtypeToPreserve, 'String');
+      $subtypesToPreserveClause[] = "(civicrm_contact.contact_sub_type NOT LIKE '%" . CRM_Core_DAO::VALUE_SEPARATOR . $subtypeToPreserve . CRM_Core_DAO::VALUE_SEPARATOR . "%')";
     }
     $subtypesToPreserveClause = implode(' AND ', $subtypesToPreserveClause);