Re: Errore Chat
Posted: Mon Mar 23, 2020 11:57 am
Si tratta di come è scritta la funzione jump_to nella classe Utils (il file è quello che ho indicato).
Code: Select all
public static function jump_to($relative_url, $anchor = false)
{
$relative_url = trim(str_replace('&', '&', $relative_url));
session_write_close();
Header('Location: http' . (((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on')
or (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) == 'https')
or (isset($_SERVER['HTTP_FRONT_END_HTTPS']) && strtolower($_SERVER['HTTP_FRONT_END_HTTPS']) == 'on')) ? 's' : '').'://'
.((isset($_SERVER['HTTP_X_FORWARDED_HOST'])) ? $_SERVER['HTTP_X_FORWARDED_HOST'] : $_SERVER['HTTP_HOST'])
.(strlen(dirname($_SERVER['SCRIPT_NAME'])) != 1 ? dirname($_SERVER['SCRIPT_NAME']) : '')
.'/'.$relative_url
.($anchor !== false ? $anchor : ''));
ob_clean();
exit();
}