Merge pull request #1134 from nextcloud/fix_redirection
Fix redirection taking care of protocol and port
This commit is contained in:
commit
490c219893
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ class OC {
|
||||||
if (OC::$CLI) {
|
if (OC::$CLI) {
|
||||||
throw new Exception('Not installed');
|
throw new Exception('Not installed');
|
||||||
} else {
|
} else {
|
||||||
$url = 'http://' . $_SERVER['SERVER_NAME'] . OC::$WEBROOT . '/index.php';
|
$url = OC::$WEBROOT . '/index.php';
|
||||||
header('Location: ' . $url);
|
header('Location: ' . $url);
|
||||||
}
|
}
|
||||||
exit();
|
exit();
|
||||||
|
|
Loading…
Reference in a new issue