diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-20 23:54:37 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-20 23:58:07 +0200 |
commit | cfa036eaa916c1adf38fb161a16c50cd050c0a3b (patch) | |
tree | 96ed86f65b21a82724e44eee60177e084170673f /apps/files_external/lib/swift.php | |
parent | f7722abcb0a7f6b91e6c767d601193446a41a817 (diff) | |
download | nextcloud-server-cfa036eaa916c1adf38fb161a16c50cd050c0a3b.tar.gz nextcloud-server-cfa036eaa916c1adf38fb161a16c50cd050c0a3b.zip |
drop filectime from the filesystem api's
Diffstat (limited to 'apps/files_external/lib/swift.php')
-rw-r--r-- | apps/files_external/lib/swift.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 4b3f38166dc..c3578b0c23e 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -500,7 +500,6 @@ class SWIFT extends \OC\Files\Storage\Common{ return array( 'mtime'=>-1, 'size'=>$container->bytes_used, - 'ctime'=>-1 ); } @@ -518,7 +517,6 @@ class SWIFT extends \OC\Files\Storage\Common{ return array( 'mtime'=>$mtime, 'size'=>$obj->content_length, - 'ctime'=>-1, ); } |