From 5472150c2fcc91aa190e2cbbd7c228c90de43470 Mon Sep 17 00:00:00 2001 From: David Flatz Date: Thu, 12 Feb 2015 13:47:51 +0100 Subject: Revert "allow international chars in path" because it introduces a lot of redirect loops because of non-canoical representations of url This reverts commit ae6397e68cd352a0478123eb0f9f60457a155f35. --- it_html.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it_html.class') diff --git a/it_html.class b/it_html.class index db63928..2a93473 100644 --- a/it_html.class +++ b/it_html.class @@ -551,7 +551,7 @@ static function U(/* ... */) $parts[$i] = (preg_match('/[0-9a-f][0-9a-f]/i', $parts[$i]) ? "%" : "%25") . $parts[$i]; $path = join("", $parts); - $path = preg_replace_callback('|[^-a-z0-9_.+!*(),:?@&=/~$%#\x80-\xff]|i', function($m) { return rawurlencode($m[0]); }, $path); + $path = preg_replace_callback('|[^-a-z0-9_.+!*(),:?@&=/~$%#]|i', function($m) { return rawurlencode($m[0]); }, $path); $path = preg_replace('|^([a-z0-9_]+:)?//[^/]*$|', '$0/', $path); # Add slash if absolute url without a path, e.g. http://gna.ch $queryparams = it_url::params($params); $separator = strpos($path, "?") === false ? "?" : "&"; -- cgit v1.2.3