diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-02-16 19:45:00 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-02-17 22:07:14 +0100 |
commit | f47444e1f776912cbf141ec9cc3763110f4e3552 (patch) | |
tree | e50acafa0fc13b943aafc7b8f424cab142236363 /index.php | |
parent | 5f3c54922773068091dfe8b40e3b407512ef4cfe (diff) | |
download | nextcloud-server-f47444e1f776912cbf141ec9cc3763110f4e3552.tar.gz nextcloud-server-f47444e1f776912cbf141ec9cc3763110f4e3552.zip |
Use separate function to make absolute urls
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php index 9bd460be353..18ea3022bc5 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::linkTo('files','webdav.php')); + header('location: '.OC_Helper::linkToAbsolute('files','webdav.php')); exit(); } |