diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_url.inc.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/functions_url.inc.php b/include/functions_url.inc.php index 9cc6c9ec7..138a895e1 100644 --- a/include/functions_url.inc.php +++ b/include/functions_url.inc.php @@ -69,14 +69,14 @@ function get_absolute_root_url($with_scheme=true) else { $url .= $_SERVER['HTTP_HOST']; - } - if ( (!$is_https && $_SERVER['SERVER_PORT'] != 80) - ||($is_https && $_SERVER['SERVER_PORT'] != 443)) - { - $url_port = ':'.$_SERVER['SERVER_PORT']; - if (strrchr($url, ':') != $url_port) + if ( (!$is_https && $_SERVER['SERVER_PORT'] != 80) + ||($is_https && $_SERVER['SERVER_PORT'] != 443)) { - $url .= $url_port; + $url_port = ':'.$_SERVER['SERVER_PORT']; + if (strrchr($url, ':') != $url_port) + { + $url .= $url_port; + } } } } |