From 5cba09e93153bc7f345a878b341fd4eed8bb635f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20M=C3=BCller?= Date: Tue, 16 Jul 2013 11:35:48 +0200 Subject: [PATCH] fixing / adding comments --- apps/files_external/lib/irods.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.39.5