diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 12:21:55 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 12:21:55 +0200 |
commit | 4ffc936624d7a26271862a794fd472b1678de644 (patch) | |
tree | 7a87e7f6c5a2bd8f0d4286ece371ee28b9f91371 /apps/files_external | |
parent | fdddc11f635d903e58d528d26f68203695766b53 (diff) | |
parent | 3eba0c479f5c8e6050709a9797bb4ebd5892a90f (diff) | |
download | nextcloud-server-4ffc936624d7a26271862a794fd472b1678de644.tar.gz nextcloud-server-4ffc936624d7a26271862a794fd472b1678de644.zip |
Merge pull request #24806 from owncloud/fix-path-to-3rdparty-after-move-to-lib-Lib
Fix import path for 3rdparty dropbox autoloader
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/Dropbox.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/Dropbox.php b/apps/files_external/lib/Lib/Storage/Dropbox.php index 55ae7146572..162112f0504 100644 --- a/apps/files_external/lib/Lib/Storage/Dropbox.php +++ b/apps/files_external/lib/Lib/Storage/Dropbox.php @@ -33,7 +33,7 @@ use GuzzleHttp\Exception\RequestException; use Icewind\Streams\IteratorDirectory; use Icewind\Streams\RetryWrapper; -require_once __DIR__ . '/../../3rdparty/Dropbox/autoload.php'; +require_once __DIR__ . '/../../../3rdparty/Dropbox/autoload.php'; class Dropbox extends \OC\Files\Storage\Common { |