mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 04:33:13 +01:00
MDL-36120 cachestore_file: Added missing singledirectory check in config check
This commit is contained in:
parent
702651c7a6
commit
49c497ff08
3
cache/stores/file/lib.php
vendored
3
cache/stores/file/lib.php
vendored
@ -532,6 +532,9 @@ class cachestore_file implements cache_store, cache_is_key_aware {
|
||||
if (isset($data->autocreate)) {
|
||||
$config['autocreate'] = $data->autocreate;
|
||||
}
|
||||
if (isset($data->singledirectory)) {
|
||||
$config['singledirectory'] = $data->singledirectory;
|
||||
}
|
||||
if (isset($data->prescan)) {
|
||||
$config['prescan'] = $data->prescan;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user