aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db/mysql.php')
-rw-r--r--phpBB/db/mysql.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/db/mysql.php b/phpBB/db/mysql.php
index 9e8d17b240..4d0f9d62f6 100644
--- a/phpBB/db/mysql.php
+++ b/phpBB/db/mysql.php
@@ -312,9 +312,7 @@ class sql_db
if ($cache->sql_exists($query_id))
{
- $return = $cache->sql_fetchrow($query_id);
- print_r($return);
- return $return;
+ return $cache->sql_fetchrow($query_id);
}
return ($query_id) ? @mysql_fetch_assoc($query_id) : false;