ICM-18 Fixed issues that were reported by Jenkins test
[civicrm-core.git] / CRM / Price / BAO / PriceFieldValue.php
index 7588efb21828ef616e1bb0abb24214b899915965..7d73b90c731500d63015d49fa1327fa5b4a81002 100644 (file)
@@ -158,7 +158,7 @@ class CRM_Price_BAO_PriceFieldValue extends CRM_Price_DAO_PriceFieldValue {
     CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes);
     $addWhere = "financial_type_id IN (0)";
     if (!empty($financialTypes)) {
-      $addWhere = "financial_type_id IN (" . implode(',' , array_keys($financialTypes)) . ")";
+      $addWhere = "financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")";
     }
     $fieldValueDAO = new CRM_Price_DAO_PriceFieldValue();
     $fieldValueDAO->price_field_id = $fieldId;