From 1d876b47fda381d3f8b4b47673fe8de8d73af85f Mon Sep 17 00:00:00 2001 From: Christian Flach Date: Sat, 2 Aug 2014 11:32:29 +0200 Subject: [PATCH] Removed invisible ASCII 1 character. --- src/lib/util/DBUtil.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/DBUtil.php b/src/lib/util/DBUtil.php index 2ff4dae303..24e4e7e65d 100644 --- a/src/lib/util/DBUtil.php +++ b/src/lib/util/DBUtil.php @@ -1314,7 +1314,7 @@ public static function _checkOrderByClause($orderby, $table) throw new Exception(__f('The parameter %s must not be empty', 'table')); } - if (strpos($orderby, 'GROUP BY') === 0) { + if (strpos($orderby, 'GROUP BY') === 0) { return $orderby; }