]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing / adding comments
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 16 Jul 2013 09:35:48 +0000 (11:35 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 16 Jul 2013 09:35:48 +0000 (11:35 +0200)
apps/files_external/lib/irods.php

index d2e06e72d152467f0da2f01e6ad8378d17c33231..ddce8639ff47deb1a49d05adec113ace893c1efd 100644 (file)
@@ -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;
        }