remove debug

git-svn-id: file:///svn/phpbb/trunk@3539 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-02-26 01:41:59 +00:00
parent 5b0d02baa2
commit 98c7975cc6

View file

@ -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;