1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-05 05:55:15 +02:00

query_id return changed back ... I think somethins is afoot with my local repository ...

git-svn-id: file:///svn/phpbb/trunk@4396 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-08-12 23:40:14 +00:00
parent 1d8f0dba07
commit 1e91f9b554

View File

@ -120,12 +120,7 @@ class sql_db
{
global $cache;
$this->query_result = false;
if ($max_age && method_exists($cache, 'sql_load'))
{
$cache->sql_load($query, $max_age);
}
$this->query_result = ($max_age && method_exists($cache, 'sql_load')) ? $cache->sql_load($query, $max_age) : false;
if (!$this->query_result)
{