Fix case where port is missing

remotes/origin/stable6
Vincent Petry 2014-02-25 11:22:53 +07:00
parent 4286eeb531
commit 6d3b5b24fd
1 changed files with 1 additions and 1 deletions

@ -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'];
}
}