1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Correctly return results for nested cached queries (Bug #31445 - Patch by faw)

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8758 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Chris Smith
2008-08-14 18:38:41 +00:00
parent d7126ef335
commit 1990ee2d4c
9 changed files with 9 additions and 8 deletions

View File

@@ -183,7 +183,7 @@ class dbal_mysql extends dbal
return false;
}
return ($this->query_result) ? $this->query_result : false;
return ($this->query_result !== false) ? $this->query_result : false;
}
/**