From: Michiel de Jong Date: Wed, 9 May 2012 13:19:06 +0000 (+0200) Subject: new requires now necessary X-Git-Tag: v4.0.0RC~91 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2cf5bb684969631d01f522447cd4f78bebe9d6fd;p=nextcloud-server.git new requires now necessary --- diff --git a/apps/remoteStorage/auth.php b/apps/remoteStorage/auth.php index ac8c2423291..502bfc0b33b 100755 --- a/apps/remoteStorage/auth.php +++ b/apps/remoteStorage/auth.php @@ -29,9 +29,19 @@ // Do not load FS ... $RUNTIME_NOSETUPFS = true; +require_once('../../lib/base.php'); + +require_once('../../lib/user.php'); +require_once('../../lib/public/user.php'); + +require_once('../../lib/app.php'); +require_once('../../lib/public/app.php'); + +require_once('../../3rdparty/Sabre/DAV/Auth/IBackend.php'); +require_once('../../3rdparty/Sabre/DAV/Auth/Backend/AbstractBasic.php'); +require_once('../../lib/connector/sabre/auth.php'); OCP\App::checkAppEnabled('remoteStorage'); -require_once('Sabre/autoload.php'); require_once('lib_remoteStorage.php'); require_once('oauth_ro_auth.php');