Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-12-19 00:08:32 +0300
committerGitHub <noreply@github.com>2017-12-19 00:08:32 +0300
commita84d11de7bf9e26f2932e362435921556eb80560 (patch)
tree56e97e5ab011a3322cf09625b3196905d51e0740 /core/Command/Maintenance
parent60297ed7e0ef5266e766b54c2dbde1e494b27141 (diff)
parent094d41937a5889e4c545ecf575aa1acbcf489a55 (diff)
Merge pull request #7531 from nextcloud/ldap/createdistributed
don't use deprecated method for requesting memcache
Diffstat (limited to 'core/Command/Maintenance')
-rw-r--r--core/Command/Maintenance/UpdateTheme.php2
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');
}