don't report ctime in the archive storage backend since it isn't reliable

This commit is contained in:
Robin Appelman 2012-08-19 06:18:40 +02:00
parent 7f6a037b8c
commit 758ebe0446

View file

@ -57,7 +57,7 @@ class OC_Filestorage_Archive extends OC_Filestorage_Common{
return opendir('fakedir://'.$id);
}
public function stat($path){
$ctime=filectime($this->path);
$ctime=-1;
$path=$this->stripPath($path);
if($path==''){
$stat=stat($this->path);