diff options
| author | noackorama <noackorama@gmail.com> | 2022-05-12 16:21:35 +0200 |
|---|---|---|
| committer | noackorama <noackorama@gmail.com> | 2022-05-12 16:21:35 +0200 |
| commit | 690e3a9ff87f40bbb06bfabb80ab324f04120161 (patch) | |
| tree | bc77ddf6ca1dbddfbc6f31e305ddc54f69fef912 /lib | |
| parent | 890bf4e455192dadda001200dac5bcf8a16bbfc3 (diff) | |
fix syntax err closes #1032
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bootstrap.php b/lib/bootstrap.php index 20c1be5..8149868 100644 --- a/lib/bootstrap.php +++ b/lib/bootstrap.php @@ -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']; } |
