summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/irods.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-07-16 11:35:48 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-07-16 11:35:48 +0200
commit5cba09e93153bc7f345a878b341fd4eed8bb635f (patch)
tree582fddc0bdc75a317cbe94e0179079ecc6c88a93 /apps/files_external/lib/irods.php
parent9c0bf5c41a2857705b4989adbbfb1ca997fda36b (diff)
downloadnextcloud-server-5cba09e93153bc7f345a878b341fd4eed8bb635f.tar.gz
nextcloud-server-5cba09e93153bc7f345a878b341fd4eed8bb635f.zip
fixing / adding comments
Diffstat (limited to 'apps/files_external/lib/irods.php')
-rw-r--r--apps/files_external/lib/irods.php4
1 files changed, 3 insertions, 1 deletions
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;
}