Change cache touch parameter to invalidate, added CLI option for it

This commit is contained in:
Matias Griese
2019-04-30 10:48:35 +03:00
parent 4f83b5da5b
commit c5b3792a60
2 changed files with 4 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
* Fixed Assets options array mixed with standalone priority [#2477](https://github.com/getgrav/grav/issues/2477)
* Fix for `avatar_url` provided by 3rd party providers
* Fixed non standard `lang` code lengths in `Utils` and `Session` detection
* Fixed saving a new object in Flex `SimpleStorage`
# v1.6.8
## 04/23/2019

View File

@@ -192,6 +192,9 @@ class SimpleStorage extends AbstractFilesystemStorage
$list = [];
foreach ($rows as $key => $row) {
if (strpos($key, '@@')) {
$key = $this->getNewKey();
}
$this->data[$key] = $list[$key] = $row;
}