From f25c0c0414f6ae4b48da76267a4b071e0a5190de Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Wed, 23 Sep 2015 15:07:55 +0530 Subject: [PATCH] --CRM-16526, fixed syntax error --- CRM/Financial/BAO/FinancialType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Financial/BAO/FinancialType.php b/CRM/Financial/BAO/FinancialType.php index fe27691b4b..9cd40e947e 100644 --- a/CRM/Financial/BAO/FinancialType.php +++ b/CRM/Financial/BAO/FinancialType.php @@ -352,7 +352,7 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType { $column = "membership_type_id"; } if (!empty($whereClauses)) { - $whereClauses = ' AND '; + $whereClauses .= ' AND '; } if (empty($types)) { $whereClauses .= " civicrm_{$component}.{$column} IN (0)"; -- 2.25.1