From: Thomas Müller Date: Tue, 16 Jul 2013 09:35:48 +0000 (+0200) Subject: fixing / adding comments X-Git-Tag: v6.0.0alpha2~423^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5cba09e93153bc7f345a878b341fd4eed8bb635f;p=nextcloud-server.git fixing / adding comments --- diff --git a/apps/files_external/lib/irods.php b/apps/files_external/lib/irods.php index d2e06e72d15..ddce8639ff4 100644 --- a/apps/files_external/lib/irods.php +++ b/apps/files_external/lib/irods.php @@ -65,7 +65,7 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ } /** - * construct the ftp url + * construct the rods url * @param string $path * @return string */ @@ -80,6 +80,8 @@ class iRODS extends \OC\Files\Storage\StreamWrapper{ if ($this->auth_mode !== '') { $userWithZone .= '.'.$this->auth_mode; } + + // url wrapper schema is named rods return 'rods://'.$userWithZone.':'.$this->password.'@'.$this->host.':'.$this->port.$this->root.$path; }