1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[feature/request-class] Adjust code base to do html decoding manually

PHPBB3-9716
This commit is contained in:
Igor Wiedler
2011-08-18 23:38:39 +02:00
parent fd08cd8dd0
commit c5cef773c4
10 changed files with 31 additions and 30 deletions

View File

@@ -301,7 +301,7 @@ function download_allowed()
return true;
}
$url = trim($request->header('Referer'));
$url = htmlspecialchars_decode($request->header('Referer'));
if (!$url)
{