summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-06-06 23:28:08 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2013-06-06 23:28:08 +0200
commit2772b1dd956078357d5a8f47e520cde484fe30a5 (patch)
tree0fe1c5c230f1c743de22a41dc79170290b3f0b24 /apps
parent3170e3511baaa67590bef0bef92e734cc2226042 (diff)
downloadnextcloud-server-2772b1dd956078357d5a8f47e520cde484fe30a5.tar.gz
nextcloud-server-2772b1dd956078357d5a8f47e520cde484fe30a5.zip
update to latest master
Diffstat (limited to 'apps')
-rw-r--r--apps/files_external/lib/irods.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/files_external/lib/irods.php b/apps/files_external/lib/irods.php
index 1a0eb63d806..d2e06e72d15 100644
--- a/apps/files_external/lib/irods.php
+++ b/apps/files_external/lib/irods.php
@@ -84,12 +84,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));
}
@@ -100,8 +98,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
@@ -121,8 +117,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);