diff options
-rw-r--r-- | it_html.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class index 08904a8..b44dd09 100644 --- a/it_html.class +++ b/it_html.class @@ -436,7 +436,7 @@ function u(/* ... */) list($base, $params) = it_html::_parse_args($args); if (!isset($base)) - it_untaint($base = $_SERVER['PHP_SELF']); + $base = $_SERVER['PHP_SELF']; $base = preg_replace('|\0|', '', $base); $base = preg_replace('|[^\w.+!*(),:?@&=/~$-]|e', 'urlencode("$0")', $base); |