summaryrefslogtreecommitdiffstats
path: root/lib/private/files
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-12-02 16:39:03 +0100
committerRobin Appelman <icewind@owncloud.com>2014-12-02 16:39:03 +0100
commit1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5 (patch)
tree6d6d466b5b522eef1509ea051533bbe6098de0c9 /lib/private/files
parentdb3f7238dd1d10c826c2e484d1d8c2a720bbec47 (diff)
downloadnextcloud-server-1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5.tar.gz
nextcloud-server-1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5.zip
also clear statcache in mapped local
Diffstat (limited to 'lib/private/files')
-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 fe6fff4ebdb..8f813f973b9 100644
--- a/lib/private/files/storage/mappedlocal.php
+++ b/lib/private/files/storage/mappedlocal.php
@@ -153,6 +153,7 @@ class MappedLocal extends \OC\Files\Storage\Common {
}
public function filemtime($path) {
+ clearstatcache($this->getSourcePath($path));
return filemtime($this->getSourcePath($path));
}