]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix undefined index error
authorRobin Appelman <icewind@owncloud.com>
Fri, 13 Jun 2014 10:47:47 +0000 (12:47 +0200)
committerBjoern Schiessle <schiessle@owncloud.com>
Sat, 14 Jun 2014 08:22:38 +0000 (10:22 +0200)
apps/files_sharing/lib/external/storage.php

index 7eac7f02c27aa2a2675c9840ac6e389bdc173f47..cd04841bb09761d182f48a512ff179cde2ace27f 100644 (file)
@@ -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';