From: Thomas Mueller Date: Thu, 6 Jun 2013 21:28:08 +0000 (+0200) Subject: update to latest master X-Git-Tag: v5.0.10~40^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2ae4675c492c3ad67d43381f38240b4c0929a2a2;p=nextcloud-server.git update to latest master --- diff --git a/apps/files_external/lib/irods.php b/apps/files_external/lib/irods.php index 6d93002552c..ddce8639ff4 100644 --- a/apps/files_external/lib/irods.php +++ b/apps/files_external/lib/irods.php @@ -86,12 +86,10 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ } public function filetype($path) { - $this->init(); return @filetype($this->constructUrl($path)); } public function mkdir($path) { - $this->init(); return @mkdir($this->constructUrl($path)); } @@ -102,8 +100,6 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ return false; } - $this->init(); - $path = $this->constructUrl($path); // if the file doesn't exist we create it @@ -123,8 +119,6 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ * @return bool */ public function hasUpdated($path,$time) { - $this->init(); - // this it a work around for folder mtimes -> we loop it's content if ( $this->is_dir($path)) { $actualTime=$this->collectionMTime($path);