Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 13:07:05 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 13:07:05 +0400
commitb0d186265aef4d7095bb4e6626928f5eb4944e36 (patch)
tree93e07d0c545eb08cba6b2c224bf2edd51a61cf9e
parentb867b738e8772ac8806b031baccebf150d701dde (diff)
Update files/webdav.php
respect coding style
-rw-r--r--files/webdav.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/webdav.php b/files/webdav.php
index c19c4c6b72f..cfbb3f486db 100644
--- a/files/webdav.php
+++ b/files/webdav.php
@@ -25,7 +25,7 @@
// only need filesystem apps
$RUNTIME_APPTYPES=array('filesystem','authentication');
-require_once('../lib/base.php');
+require_once '../lib/base.php';
// Backends
$authBackend = new OC_Connector_Sabre_Auth();
@@ -36,7 +36,7 @@ $publicDir = new OC_Connector_Sabre_Directory('');
// Fire up server
$server = new Sabre_DAV_Server($publicDir);
-$server->setBaseUri(OC::$WEBROOT.'/files/webdav.php');
+$server->setBaseUri(OC::$WEBROOT. '/files/webdav.php');
// Load plugins
$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud'));