diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-10-28 19:48:46 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-10-29 15:04:56 +0100 |
commit | ccbf4e993c99c6a42c8e1574405244dbd5f660ca (patch) | |
tree | 8561f175a6a28d8f9c37583886844f4ff30f8449 /apps/files/appinfo | |
parent | a9ff5635d800c77e78928e5fd35e796ec6bc70f6 (diff) | |
download | nextcloud-server-ccbf4e993c99c6a42c8e1574405244dbd5f660ca.tar.gz nextcloud-server-ccbf4e993c99c6a42c8e1574405244dbd5f660ca.zip |
Use files remote webdav in compatibility files/webdav.php
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/remote.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index a84216b61b7..9c7b9ab6d5b 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -23,7 +23,7 @@ * */ // only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem','authentication'); +$RUNTIME_APPTYPES=array('filesystem', 'authentication'); OC_App::loadApps($RUNTIME_APPTYPES); // Backends @@ -38,7 +38,7 @@ $server = new Sabre_DAV_Server($publicDir); $server->setBaseUri($baseuri); // Load plugins -$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud')); +$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud')); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload |