0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-18 18:25:18 +00:00

Fix code typo in URI Filter documentation.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1349 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2007-08-03 00:08:45 +00:00
parent 79df79b2fd
commit ee388e86c0

View File

@ -141,7 +141,7 @@
var $name = 'ConvertIDNToPunycode';
function filter(&$uri, $config, &$context) {
if (is_null($uri->host)) return true;
if ($uri->host == utf8_decode($uri->host) {
if ($uri->host == utf8_decode($uri->host)) {
// is ASCII, abort
return true;
}