1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/security-180] Use language variable for redirect error in 3.1+

SECURITY-180
This commit is contained in:
Marc Alexander
2015-04-24 15:09:30 +02:00
committed by Andreas Fischer
parent 416728fc17
commit d7c96cc60c

View File

@@ -2309,7 +2309,7 @@ function redirect($url, $return = false, $disable_cd_check = false)
// Attention: only able to redirect within the same domain if $disable_cd_check is false (yourdomain.com -> www.yourdomain.com will not work)
if (!$disable_cd_check && $url_parts['host'] !== $user->host)
{
trigger_error('Tried to redirect to potentially insecure url.', E_USER_ERROR);
trigger_error('INSECURE_REDIRECT', E_USER_ERROR);
}
}
else if ($url[0] == '/')