MDL-42012 cache: Fix missing return value

This commit is contained in:
Andrew Nicols
2020-09-15 11:46:31 +08:00
parent 7156a01a0c
commit 7818990010
+1 -1
View File
@@ -84,7 +84,7 @@ class cache_disabled extends cache {
return $this->get_datasource()->load_many_for_cache($keys);
}
return $return;
return array_combine($keys, array_fill(0, count($keys), false));
}
/**