Skip to content
Snippets Groups Projects
Commit 690e3a9f authored by André Noack's avatar André Noack
Browse files

fix syntax err closes #1032

parent 890bf4e4
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ if (isset($_SERVER['SERVER_NAME'])) {
$ABSOLUTE_URI_STUDIP .= '://'.$_SERVER['SERVER_NAME'];
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' && $_SERVER['SERVER_PORT'] != 443 ||
empty($SERVER['HTTPS']) && $_SERVER['SERVER_PORT'] != 80) {
empty($_SERVER['HTTPS']) && $_SERVER['SERVER_PORT'] != 80) {
$ABSOLUTE_URI_STUDIP .= ':'.$_SERVER['SERVER_PORT'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment