summaryrefslogtreecommitdiffstats
path: root/apps/files_archive
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-08-19 06:18:40 +0200
committerRobin Appelman <icewind@owncloud.com>2012-08-19 06:18:40 +0200
commit758ebe04465e533ceade096f5ebd1fdc08314b1f (patch)
treee799c271cf8d02e9c8df29f9f2623ff1dce60ab7 /apps/files_archive
parent7f6a037b8c9a0934fe20dde8260e9c4613472c50 (diff)
downloadnextcloud-server-758ebe04465e533ceade096f5ebd1fdc08314b1f.tar.gz
nextcloud-server-758ebe04465e533ceade096f5ebd1fdc08314b1f.zip
don't report ctime in the archive storage backend since it isn't reliable
Diffstat (limited to 'apps/files_archive')
-rw-r--r--apps/files_archive/lib/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_archive/lib/storage.php b/apps/files_archive/lib/storage.php
index 855e0a705c8..cd750427af3 100644
--- a/apps/files_archive/lib/storage.php
+++ b/apps/files_archive/lib/storage.php
@@ -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);