From 75c03dd81efda3d7142a9caea05d837550a62742 Mon Sep 17 00:00:00 2001 From: rxu Date: Wed, 8 Jan 2020 21:34:33 +0700 Subject: [ticket/16307] Fix SQL time reporting when debug.sql_explain parameter is set PHPBB3-16307 --- phpBB/phpbb/db/driver/driver.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/phpBB/phpbb/db/driver/driver.php b/phpBB/phpbb/db/driver/driver.php index 93f0a749e5..2a4150b558 100644 --- a/phpBB/phpbb/db/driver/driver.php +++ b/phpBB/phpbb/db/driver/driver.php @@ -1037,12 +1037,6 @@ abstract class driver implements driver_interface function sql_report($mode, $query = '') { global $cache, $starttime, $phpbb_root_path, $phpbb_path_helper; - global $request; - - if (is_object($request) && !$request->variable('explain', false)) - { - return false; - } if (!$query && $this->query_hold != '') { -- cgit v1.2.3-65-gdbad