mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-26 14:40:32 +00:00
Bugfix: Work item GH-67 - Cache directory for DiscISAM cache storage cannot be set
This commit is contained in:
@@ -198,7 +198,7 @@ class PHPExcel_CachedObjectStorageFactory
|
||||
|
||||
self::$_storageMethodParameters[$method] = self::$_storageMethodDefaultParameters[$method];
|
||||
foreach($arguments as $k => $v) {
|
||||
if (isset(self::$_storageMethodParameters[$method][$k])) {
|
||||
if (array_key_exists($k, self::$_storageMethodParameters[$method])) {
|
||||
self::$_storageMethodParameters[$method][$k] = $v;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user