diff options
author | Francesco Rovelli <francesco.rovelli@gmail.com> | 2016-04-26 16:24:30 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 12:22:30 +0200 |
commit | 49bec94959bba9b10407de5ecb3673f2b69601f2 (patch) | |
tree | 40f961b1fd8bd110a9d6276cc722f57f123c2748 /apps/files_external/lib | |
parent | c1583f03ab4eec08e66b7d5a9066ffd3bdf507b7 (diff) | |
download | nextcloud-server-49bec94959bba9b10407de5ecb3673f2b69601f2.tar.gz nextcloud-server-49bec94959bba9b10407de5ecb3673f2b69601f2.zip |
enable autoload of lib in google storage
Diffstat (limited to 'apps/files_external/lib')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/Google.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/Google.php b/apps/files_external/lib/Lib/Storage/Google.php index 13e89299c22..50d8849db11 100644 --- a/apps/files_external/lib/Lib/Storage/Google.php +++ b/apps/files_external/lib/Lib/Storage/Google.php @@ -39,6 +39,7 @@ use Icewind\Streams\RetryWrapper; set_include_path(get_include_path().PATH_SEPARATOR. \OC_App::getAppPath('files_external').'/3rdparty/google-api-php-client/src'); +require_once 'Google/autoload.php'; require_once 'Google/Client.php'; require_once 'Google/Service/Drive.php'; |