summaryrefslogtreecommitdiffstats
path: root/lib/filestorage/remote.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-07-29 21:36:03 +0200
committerJakob Sack <kde@jakobsack.de>2011-07-29 21:36:03 +0200
commitbafd684eb694ed0bd86b46ff7cd36382c1cebc34 (patch)
treec3bb1e013d563263002d052eb41032076a36a5f9 /lib/filestorage/remote.php
parent220132ca237f5077f5145bf327e8528a652ad559 (diff)
downloadnextcloud-server-bafd684eb694ed0bd86b46ff7cd36382c1cebc34.tar.gz
nextcloud-server-bafd684eb694ed0bd86b46ff7cd36382c1cebc34.zip
Renaming classes :-)
Diffstat (limited to 'lib/filestorage/remote.php')
-rw-r--r--lib/filestorage/remote.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filestorage/remote.php b/lib/filestorage/remote.php
index 74234f4d8db..fb14c4121a2 100644
--- a/lib/filestorage/remote.php
+++ b/lib/filestorage/remote.php
@@ -21,7 +21,7 @@
*
*/
-class OC_FILESTORAGE_REMOTE extends OC_FILESTORAGE{
+class OC_Filestorage_Remote extends OC_Filestorage{
private $url;
private $username;
private $password;
@@ -45,7 +45,7 @@ class OC_FILESTORAGE_REMOTE extends OC_FILESTORAGE{
}
private function connect(){
if($this->remote===false){
- $this->remote=OC_CONNECT::connect($this->url,$this->username,$this->password);
+ $this->remote=OC_Connect::connect($this->url,$this->username,$this->password);
}
}
public function mkdir($path){