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
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-12-02 18:39:03 +0300
committerVincent Petry <pvince81@owncloud.com>2015-03-13 13:53:50 +0300
commit0ca15003301bcdf2625c75fbd0f874922899dde3 (patch)
tree6fa31382f7980c1ea5d360ce597557b7ac67d7b2 /lib
parent92cbeefa34d27d1b77e03de952a2ff4fe56c2fec (diff)
also clear statcache in mapped local
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/storage/mappedlocal.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php
index 4ff02d29523..b08f8b2b0e0 100644
--- a/lib/private/files/storage/mappedlocal.php
+++ b/lib/private/files/storage/mappedlocal.php
@@ -149,6 +149,7 @@ class MappedLocal extends \OC\Files\Storage\Common {
}
public function filemtime($path) {
+ clearstatcache($this->buildPath($path));
return filemtime($this->buildPath($path));
}