We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78466a0 commit 6d4a69eCopy full SHA for 6d4a69e
1 file changed
components/ILIAS/soap/resources/soap/server.php
@@ -44,7 +44,7 @@
44
$headerValue = $ilIliasIniFile->readVariable('https', 'auto_https_detect_header_value');
45
46
$headerName = 'HTTP_' . str_replace('-', '_', strtoupper($headerName));
47
- if (strcasecmp($_SERVER[$headerName], $headerValue) === 0) {
+ if (strcasecmp($_SERVER[$headerName] ?? '', $headerValue) === 0) {
48
$_SERVER['HTTPS'] = 'on';
49
}
50
0 commit comments