diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-12-18 22:08:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 22:08:32 +0100 |
commit | a84d11de7bf9e26f2932e362435921556eb80560 (patch) | |
tree | 56e97e5ab011a3322cf09625b3196905d51e0740 /core/Command | |
parent | 60297ed7e0ef5266e766b54c2dbde1e494b27141 (diff) | |
parent | 094d41937a5889e4c545ecf575aa1acbcf489a55 (diff) | |
download | nextcloud-server-a84d11de7bf9e26f2932e362435921556eb80560.tar.gz nextcloud-server-a84d11de7bf9e26f2932e362435921556eb80560.zip |
Merge pull request #7531 from nextcloud/ldap/createdistributed
don't use deprecated method for requesting memcache
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Maintenance/UpdateTheme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/UpdateTheme.php b/core/Command/Maintenance/UpdateTheme.php index cf015b82635..2ab66a4ce75 100644 --- a/core/Command/Maintenance/UpdateTheme.php +++ b/core/Command/Maintenance/UpdateTheme.php @@ -57,7 +57,7 @@ class UpdateTheme extends UpdateJS { parent::execute($input, $output); // cleanup image cache - $c = $this->cacheFactory->create('imagePath'); + $c = $this->cacheFactory->createDistributed('imagePath'); $c->clear(''); $output->writeln('<info>Image cache cleared'); } |