Fix case where port is missing

This commit is contained in:
Vincent Petry 2014-02-25 11:22:53 +01:00
parent 4286eeb531
commit 6d3b5b24fd
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class OC_Request {
if (isset($_SERVER['HTTP_HOST'])) {
$host = $_SERVER['HTTP_HOST'];
}
if (isset($_SERVER['SERVER_NAME'])) {
else if (isset($_SERVER['SERVER_NAME'])) {
$host = $_SERVER['SERVER_NAME'];
}
}