1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Fixed failing book view test

Also ensured setting system localcache is cleared correctly
This commit is contained in:
Dan Brown
2017-12-30 16:09:27 +00:00
parent 359b1b40a2
commit 96b8c403a8
2 changed files with 5 additions and 2 deletions

View File

@ -98,6 +98,9 @@ class SettingService
{
$cacheKey = $this->cachePrefix . $key;
$this->cache->forget($cacheKey);
if (isset($this->localCache[$key])) {
unset($this->localCache[$key]);
}
}
/**