From 92cbeefa34d27d1b77e03de952a2ff4fe56c2fec Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 5 Sep 2014 12:05:04 +0200 Subject: Clear statcache before getting the mtime from local storage backends --- lib/private/files/storage/local.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index e33747bbd52..3204082a468 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -130,6 +130,7 @@ if (\OC_Util::runningOnWindows()) { } public function filemtime($path) { + clearstatcache($this->datadir . $path); return filemtime($this->datadir . $path); } -- cgit v1.2.3