]> source.dussan.org Git - nextcloud-server.git/commitdiff
also clear statcache in mapped local
authorRobin Appelman <icewind@owncloud.com>
Tue, 2 Dec 2014 15:39:03 +0000 (16:39 +0100)
committerVincent Petry <pvince81@owncloud.com>
Fri, 13 Mar 2015 10:53:50 +0000 (11:53 +0100)
lib/private/files/storage/mappedlocal.php

index 4ff02d2952348149e85c6e7a8be9eb7ba260de5f..b08f8b2b0e0de61a7187d67790119f66d1e674a5 100644 (file)
@@ -149,6 +149,7 @@ class MappedLocal extends \OC\Files\Storage\Common {
        }
 
        public function filemtime($path) {
+               clearstatcache($this->buildPath($path));
                return filemtime($this->buildPath($path));
        }