diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-05 10:33:21 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-11-05 10:33:21 +0100 |
commit | b75c724cc42ec447f0172c3b99707f2fa14c8597 (patch) | |
tree | 190f9d0b651f89dd0962cbef1dee6423aca1ffaf /apps/files_external/ajax | |
parent | d48ba5a5bf0668690e54d4ed68f8aa31d8946cf9 (diff) | |
download | nextcloud-server-b75c724cc42ec447f0172c3b99707f2fa14c8597.tar.gz nextcloud-server-b75c724cc42ec447f0172c3b99707f2fa14c8597.zip |
fixing dropbox require path
Diffstat (limited to 'apps/files_external/ajax')
-rw-r--r-- | apps/files_external/ajax/dropbox.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/ajax/dropbox.php b/apps/files_external/ajax/dropbox.php index bc9821c62ec..91c465500d0 100644 --- a/apps/files_external/ajax/dropbox.php +++ b/apps/files_external/ajax/dropbox.php @@ -1,6 +1,6 @@ <?php -require_once 'Dropbox/autoload.php'; +require_once __DIR__ . '/../3rdparty/Dropbox/autoload.php'; OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkLoggedIn(); |