From a3ca3f20cc9407b1421368534cae033c2fb33b0e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 5 Feb 2010 22:14:43 +0000 Subject: - Patch #635356 by c960657: fixed escaping in taxonomy autocomplete. --- modules/taxonomy/taxonomy.pages.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc index 4b65472ef..0d731ca94 100644 --- a/modules/taxonomy/taxonomy.pages.inc +++ b/modules/taxonomy/taxonomy.pages.inc @@ -121,7 +121,7 @@ function taxonomy_autocomplete($field_name, $tags_typed = '') { $n = '"' . str_replace('"', '""', $name) . '"'; } else { - $term_matches[$prefix . $n] = filter_xss($name); + $term_matches[$prefix . $n] = check_plain($name); } } } -- cgit v1.2.3