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:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user