aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-02-26 01:41:59 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-02-26 01:41:59 +0000
commit98c7975cc6b4c84c9e3db0fae26faaa05c6d3dcb (patch)
tree105dcd22b06be28b59340e9322f5f8f64a8fcda6 /phpBB/db/mysql.php
parent5b0d02baa25a9b555d925054d6493a48f409a029 (diff)
downloadforums-98c7975cc6b4c84c9e3db0fae26faaa05c6d3dcb.tar
forums-98c7975cc6b4c84c9e3db0fae26faaa05c6d3dcb.tar.gz
forums-98c7975cc6b4c84c9e3db0fae26faaa05c6d3dcb.tar.bz2
forums-98c7975cc6b4c84c9e3db0fae26faaa05c6d3dcb.tar.xz
forums-98c7975cc6b4c84c9e3db0fae26faaa05c6d3dcb.zip
remove debug
git-svn-id: file:///svn/phpbb/trunk@3539 89ea8834-ac86-4346-8a33-228a782c2dd0
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;