From ada40b3eb099b02e25c8a50b44bfd7e51b8b2394 Mon Sep 17 00:00:00 2001 From: Johan Vervloet Date: Thu, 15 Jun 2017 22:02:36 +0200 Subject: [PATCH] Style fix. --- Civi/API/Api3SelectQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/API/Api3SelectQuery.php b/Civi/API/Api3SelectQuery.php index bb3f458ebc..f763e30aa0 100644 --- a/Civi/API/Api3SelectQuery.php +++ b/Civi/API/Api3SelectQuery.php @@ -91,7 +91,7 @@ class Api3SelectQuery extends SelectQuery { elseif (($cf_id = \CRM_Core_BAO_CustomField::getKeyID($key)) != FALSE) { // If we check a custom field on 'IS NULL', it should also work when there is no // record in the custom value table, see CRM-20740. - $side = empty($value['IS NULL']) ? 'INNER': 'LEFT OUTER'; + $side = empty($value['IS NULL']) ? 'INNER' : 'LEFT OUTER'; list($table_name, $column_name) = $this->addCustomField($this->apiFieldSpec['custom_' . $cf_id], $side); } elseif (strpos($key, '.')) { -- 2.25.1