Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-08-19 08:18:40 +0400
committerRobin Appelman <icewind@owncloud.com>2012-08-19 08:18:40 +0400
commitcca6488d54c2aced90117f2ceb1d49551247d609 (patch)
treeb23d0d2a178762025b8be8e4e433fafb935a0e4c /files_archive
parent2a2f3286eee1c73ba1ee540f8c05040becf3c820 (diff)
don't report ctime in the archive storage backend since it isn't reliable
Diffstat (limited to 'files_archive')
-rw-r--r--files_archive/lib/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files_archive/lib/storage.php b/files_archive/lib/storage.php
index 855e0a705..cd750427a 100644
--- a/files_archive/lib/storage.php
+++ b/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);