aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-04-24 13:52:55 +0200
committerLukas Reschke <lukas@owncloud.com>2015-04-24 13:52:55 +0200
commita2f9a2dc6d2c6b930fffa48ec56d712e1229dba4 (patch)
tree2bd281b9547c4aa15c0e0248c5039cb4c36887af /apps
parent5b998e13d7b54de9d9c9f17205720f280b8e72cc (diff)
parent18506387c0ad32afe6bc4f54f7f53ab9f6f11df3 (diff)
downloadnextcloud-server-a2f9a2dc6d2c6b930fffa48ec56d712e1229dba4.tar.gz
nextcloud-server-a2f9a2dc6d2c6b930fffa48ec56d712e1229dba4.zip
Merge pull request #15855 from owncloud/teardownaftercommand
Tear down FS after running trash expire
Diffstat (limited to 'apps')
-rw-r--r--apps/files_trashbin/command/expire.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_trashbin/command/expire.php b/apps/files_trashbin/command/expire.php
index f0526d42830..e617fa47c90 100644
--- a/apps/files_trashbin/command/expire.php
+++ b/apps/files_trashbin/command/expire.php
@@ -52,5 +52,6 @@ class Expire implements ICommand {
\OC_Util::tearDownFS();
\OC_Util::setupFS($this->user);
Trashbin::expire($this->trashBinSize, $this->user);
+ \OC_Util::tearDownFS();
}
}