Browse Source

non existing files can never be updated

remotes/origin/stable4
Robin Appelman 15 years ago
parent
commit
95459d068e
  1. 3
      lib/filecache.php

3
lib/filecache.php

@ -515,6 +515,9 @@ class OC_FileCache{
}
$view=new OC_FilesystemView($root);
}
if(!$view->file_exists($path)){
return false;
}
$mtime=$view->filemtime($path);
$isDir=$view->is_dir($path);
$path=$root.$path;

Loading…
Cancel
Save