diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-04-24 12:09:09 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-04-24 12:09:09 +0200 |
commit | 18506387c0ad32afe6bc4f54f7f53ab9f6f11df3 (patch) | |
tree | e3895623c745f3ce27be3c320d5cf11afe33f55d /apps/files_trashbin | |
parent | 33d197db29bcaded7b22c0d81e4e2f92004e9398 (diff) | |
download | nextcloud-server-18506387c0ad32afe6bc4f54f7f53ab9f6f11df3.tar.gz nextcloud-server-18506387c0ad32afe6bc4f54f7f53ab9f6f11df3.zip |
Tear down FS after running trash expire
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/command/expire.php | 1 |
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(); } } |