Merge branch '3.2.x'

This commit is contained in:
Derky 2018-09-16 13:08:39 +02:00
commit 796dde0428

View file

@ -51,10 +51,11 @@ abstract class memory extends \phpbb\cache\driver\base
function load() function load()
{ {
// grab the global cache // 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; return true;
} }