summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-09-17 08:58:10 +0200
committerMorris Jobke <hey@morrisjobke.de>2020-09-17 08:58:10 +0200
commit930c97a0ef0f01751f6f645e4506a216ef98c8a0 (patch)
treecffcf467eb036eb19af4b26352f98dcdd88e20a9 /apps/files_trashbin
parent05edd1e5d6156766d072a9bf4782293b37210977 (diff)
downloadnextcloud-server-930c97a0ef0f01751f6f645e4506a216ef98c8a0.tar.gz
nextcloud-server-930c97a0ef0f01751f6f645e4506a216ef98c8a0.zip
Fix variable name and add spaces around path in info log line
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/Storage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/Storage.php b/apps/files_trashbin/lib/Storage.php
index 9cf154e9bfd..2064b7d664f 100644
--- a/apps/files_trashbin/lib/Storage.php
+++ b/apps/files_trashbin/lib/Storage.php
@@ -100,8 +100,8 @@ class Storage extends Wrapper {
} catch (GenericEncryptionException $e) {
// in case of a encryption exception we delete the file right away
$this->logger->info(
- "Can't move file" . $path .
- "to the trash bin, therefore it was deleted right away");
+ "Can't move file " . $path .
+ " to the trash bin, therefore it was deleted right away");
return $this->storage->unlink($path);
}