- Patch #39566 by chx: fixed incorrect encoding in URLs.

4.7.x
Dries Buytaert 2005-12-02 10:31:21 +00:00
parent 9c02757477
commit b1a648b371
1 changed files with 1 additions and 3 deletions

View File

@ -696,9 +696,7 @@ function check_file($filename) {
*
*/
function check_url($uri) {
$uri = filter_xss_bad_protocol($uri, FALSE);
return $uri;
return filter_xss_bad_protocol($uri, FALSE);
}
/**