Fixing undeclared constant issue

This commit is contained in:
Daniel Hensby 2016-02-26 14:45:07 +00:00
parent 06d5050321
commit 3d2fcf9087

View File

@ -183,7 +183,7 @@ if(!isset($_SERVER['HTTP_HOST'])) {
if (TRUSTED_PROXY && !empty($_SERVER[$trustedProxyHeader])) { if (TRUSTED_PROXY && !empty($_SERVER[$trustedProxyHeader])) {
// Get the first host, in case there's multiple separated through commas // Get the first host, in case there's multiple separated through commas
$_SERVER['HTTP_HOST'] = strtok($_SERVER[SS_TRUSTED_PROXY_HOST_HEADER], ','); $_SERVER['HTTP_HOST'] = strtok($_SERVER[$trustedProxyHeader], ',');
} }
} }