diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-06-13 12:47:47 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-14 10:22:38 +0200 |
commit | 455fbafb484cb816307317f93a4d4018f8c2a429 (patch) | |
tree | 07632baaf3a089add2172853f4bf13b28b29bfe0 | |
parent | 3bf7b54cd59836165fd9ddb406cf1b56ded84923 (diff) | |
download | nextcloud-server-455fbafb484cb816307317f93a4d4018f8c2a429.tar.gz nextcloud-server-455fbafb484cb816307317f93a4d4018f8c2a429.zip |
Fix undefined index error
-rw-r--r-- | apps/files_sharing/lib/external/storage.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/files_sharing/lib/external/storage.php b/apps/files_sharing/lib/external/storage.php index 7eac7f02c27..cd04841bb09 100644 --- a/apps/files_sharing/lib/external/storage.php +++ b/apps/files_sharing/lib/external/storage.php @@ -33,15 +33,9 @@ class Storage extends DAV implements ISharedStorage { */ private $token; - /** - * @var \OCA\Files_Sharing\External\Manager - */ - private $manager; - public function __construct($options) { $this->remote = $options['remote']; $this->remoteUser = $options['owner']; - $this->manager = $options['manager']; list($protocol, $remote) = explode('://', $this->remote); list($host, $root) = explode('/', $remote); $secure = $protocol === 'https'; |