Merge pull request #9020 from nextcloud/stable13-8983
[stable13] Clear any theming prefixed cache on cache buster increase
This commit is contained in:
commit
4f5d057777
|
@ -320,7 +320,7 @@ class ThemingDefaults extends \OC_Defaults {
|
|||
private function increaseCacheBuster() {
|
||||
$cacheBusterKey = $this->config->getAppValue('theming', 'cachebuster', '0');
|
||||
$this->config->setAppValue('theming', 'cachebuster', (int)$cacheBusterKey+1);
|
||||
$this->cacheFactory->createDistributed('theming-')->clear('getScssVariables');
|
||||
$this->cacheFactory->createDistributed('theming-')->clear();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -276,7 +276,7 @@ class ThemingDefaultsTest extends TestCase {
|
|||
$this->cache
|
||||
->expects($this->once())
|
||||
->method('clear')
|
||||
->with('getScssVariables');
|
||||
->with('');
|
||||
$this->template->set('MySetting', 'MyValue');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue