summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-05-07 12:07:39 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-05-07 12:07:39 +0200
commite33b12a375e9a6bf7b9cc30a17c8d402e9b020d9 (patch)
tree8ecc43fca7492744651266f285ac1014e11354fb
parentef10603c2640c4aba7d19ffc850403d248abd566 (diff)
downloadnextcloud-server-e33b12a375e9a6bf7b9cc30a17c8d402e9b020d9.tar.gz
nextcloud-server-e33b12a375e9a6bf7b9cc30a17c8d402e9b020d9.zip
fix path of webdav
-rw-r--r--index.php2
-rw-r--r--settings/templates/personal.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 91f0cfb5e48..b0b77969c57 100644
--- a/index.php
+++ b/index.php
@@ -44,7 +44,7 @@ if($not_installed) {
// Handle WebDAV
if($_SERVER['REQUEST_METHOD']=='PROPFIND'){
- header('location: '.OC_Helper::linkToAbsolute('remote','webdav.php'));
+ header('location: '.OC_Helper::linkToAbsolute('remote.php','webdav/'));
exit();
}
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 3f1d57c73d4..799606e6a91 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -47,7 +47,7 @@
<p class="personalblock">
<strong>WebDAV</strong>
- <code><?php echo OC_Helper::linkToAbsolute('remote', 'webdav.php'); ?></code><br />
+ <code><?php echo OC_Helper::linkToAbsolute('remote.php', 'webdav/'); ?></code><br />
<em><?php echo $l->t('use this address to connect to your ownCloud in your file manager');?></em>
</p>