diff options
Diffstat (limited to 'phpBB/includes/db/dbal.php')
-rw-r--r-- | phpBB/includes/db/dbal.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index 83e5b1beed..2d8d2e7624 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -341,7 +341,7 @@ class dbal if (empty($_GET['explain'])) { - return; + return false; } if (!$query && $this->query_hold != '') @@ -516,6 +516,8 @@ class dbal break; } + + return true; } } |