diff --git a/framework/base/helper.class.php b/framework/base/helper.class.php index ca8c9774b8..6ffad0901f 100644 --- a/framework/base/helper.class.php +++ b/framework/base/helper.class.php @@ -263,7 +263,8 @@ class baseHelper $sqlParts = explode(',', $sql); $wrappedParts = []; - foreach ($sqlParts as $part) { + foreach ($sqlParts as $part) + { if(in_array($part, $reservedWords)) { $wrappedParts[] = '`' . $part . '`'; @@ -279,7 +280,6 @@ class baseHelper { $wrappedParts[] = '`' . $part . '`'; } - } }