update to latest master

This commit is contained in:
Thomas Mueller 2013-06-06 23:28:08 +02:00
parent 3170e3511b
commit 2772b1dd95
1 changed files with 0 additions and 6 deletions

View File

@ -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);