1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 09:30:34 +01:00

Merge pull request #5362 from hubaishan/ticket/15791

[ticket/15791] fix php 7.2 count() bug in memory cache driver
This commit is contained in:
Derky 2018-09-16 13:08:12 +02:00
commit 18dd250f52

View File

@ -51,10 +51,11 @@ abstract class memory extends \phpbb\cache\driver\base
function load()
{
// grab the global cache
$this->vars = $this->_read('global');
$data = $this->_read('global');
if ($this->vars !== false)
if ($data !== false)
{
$this->vars = $data;
return true;
}