From 1bbb18fe87aaea991b73b00dbe7d7fd2a2ec82a5 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 2 Dec 2014 16:39:03 +0100 Subject: [PATCH] also clear statcache in mapped local --- lib/private/files/storage/mappedlocal.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index fe6fff4ebd..8f813f973b 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)); }