diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-11-16 12:14:29 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-11-16 12:14:29 +0100 |
commit | 54240140b10f2d718753445b656c9607967d7c64 (patch) | |
tree | ce9367875575b0d0cda2e6e677f71178338f44b1 | |
parent | f4f00b4edb4f5f6def7c21de1124f38a2308de78 (diff) | |
download | nextcloud-server-54240140b10f2d718753445b656c9607967d7c64.tar.gz nextcloud-server-54240140b10f2d718753445b656c9607967d7c64.zip |
fix incorectly merged smb.php
-rw-r--r-- | apps/files_external/lib/smb.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index bf0d780d27b..a4b2338e3b2 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -35,6 +35,7 @@ class SMB extends \OC\Files\Storage\StreamWrapper{ if(substr($this->share, -1, 1)=='/') { $this->share = substr($this->share,0,-1); } + } public function getId(){ return 'smb::' . $this->user . '@' . $this->host . '/' . $this->share . '/' . $this->root; |