diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-05-06 20:54:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 20:54:47 +0200 |
commit | 07f41671b36399bb1e6e9d97546e0d9716ccbf75 (patch) | |
tree | 2c933f20c76ef717d4f283f5f2f3fbeaea58f90a | |
parent | 06732cf2afac424c5400766d57f374eb9e3d00ba (diff) | |
parent | 9c025134b3a8c6db5f6da14c8d40945fe2026bdb (diff) | |
download | nextcloud-server-07f41671b36399bb1e6e9d97546e0d9716ccbf75.tar.gz nextcloud-server-07f41671b36399bb1e6e9d97546e0d9716ccbf75.zip |
Merge pull request #20837 from nextcloud/bugfix/noid/fix-syntax
Fix syntax
-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 9be29f885a7..ce13215e05e 100644 --- a/core/Command/Maintenance/UpdateTheme.php +++ b/core/Command/Maintenance/UpdateTheme.php @@ -61,6 +61,6 @@ class UpdateTheme extends UpdateJS { // cleanup image cache $c = $this->cacheFactory->createDistributed('imagePath'); $c->clear(''); - $output->writeln('<info>Image cache cleared'); + $output->writeln('<info>Image cache cleared</info>'); } } |