MDL-69005 cache: fix private $store access in loader.

This commit is contained in:
Paul Holden
2020-06-10 10:31:47 +01:00
parent 71a34a039f
commit 2d70187ade
2 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -2097,7 +2097,7 @@ class cache_session extends cache {
}
$successfullyset = $this->get_store()->set_many($data);
if ($this->perfdebug && $successfullyset) {
cache_helper::record_cache_set($this->store, $this->get_definition(), $successfullyset);
cache_helper::record_cache_set($this->get_store(), $this->get_definition(), $successfullyset);
}
return $successfullyset;
}