From b1eee56ad3109eacfa3e265c35963ee0c5ee8966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 23 May 2017 09:13:11 +0200 Subject: [PATCH] Actually fix #13274 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/DbQbe.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/DbQbe.php b/libraries/DbQbe.php index 34ec902753..3b40b378b8 100644 --- a/libraries/DbQbe.php +++ b/libraries/DbQbe.php @@ -1562,7 +1562,7 @@ class DbQbe if (empty($from_clause)) { // Create cartesian product $from_clause = implode( - ", ", array_map('Util::backquote', $search_tables) + ", ", array_map(array('Util', 'backquote'), $search_tables) ); } @@ -1668,7 +1668,7 @@ class DbQbe if (count($unfinalized) > 0) { // Add these tables as cartesian product before joined tables $join .= implode( - ', ', array_map('Util::backquote', $unfinalized) + ', ', array_map(array('Util', 'backquote'), $unfinalized) ); } }