Clear statcache before getting the mtime from local storage backends

remotes/origin/fix-10825
Robin Appelman 12 years ago
parent e9029f94cb
commit db3f7238dd
  1. 1
      lib/private/files/storage/local.php

@ -134,6 +134,7 @@ if (\OC_Util::runningOnWindows()) {
}
public function filemtime($path) {
clearstatcache($this->getSourcePath($path));
return filemtime($this->getSourcePath($path));
}

Loading…
Cancel
Save