aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/mysql.php
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-09-02 13:27:37 +0000
committerChris Smith <toonarmy@phpbb.com>2008-09-02 13:27:37 +0000
commite81eb70aedd6105904854a5ce2233f4fe14eae80 (patch)
tree65d26460756e39ec3d90e61cab7b7b1ec9c98f1e /phpBB/includes/db/mysql.php
parent80b7806f67e3856fb24deaa583e185a98ee52028 (diff)
downloadforums-e81eb70aedd6105904854a5ce2233f4fe14eae80.tar
forums-e81eb70aedd6105904854a5ce2233f4fe14eae80.tar.gz
forums-e81eb70aedd6105904854a5ce2233f4fe14eae80.tar.bz2
forums-e81eb70aedd6105904854a5ce2233f4fe14eae80.tar.xz
forums-e81eb70aedd6105904854a5ce2233f4fe14eae80.zip
Refine fix for #31445 originally committed in r8758
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8809 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/mysql.php')
-rw-r--r--phpBB/includes/db/mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/mysql.php
index 5c8d08b19d..edeaf7aa73 100644
--- a/phpBB/includes/db/mysql.php
+++ b/phpBB/includes/db/mysql.php
@@ -183,7 +183,7 @@ class dbal_mysql extends dbal
return false;
}
- return ($this->query_result !== false) ? $this->query_result : false;
+ return $this->query_result;
}
/**