diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-12-02 16:39:03 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-12-02 16:39:03 +0100 |
commit | 1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5 (patch) | |
tree | 6d6d466b5b522eef1509ea051533bbe6098de0c9 /lib | |
parent | db3f7238dd1d10c826c2e484d1d8c2a720bbec47 (diff) | |
download | nextcloud-server-1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5.tar.gz nextcloud-server-1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5.zip |
also clear statcache in mapped local
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/storage/mappedlocal.php | 1 |
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)); } |