diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-02-05 22:14:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-02-05 22:14:43 +0000 |
commit | a3ca3f20cc9407b1421368534cae033c2fb33b0e (patch) | |
tree | 6dc173321656b9f4b237f3bf130a3ff400f6d3e3 /modules | |
parent | 49db9562fa98425ce61729b233301d4242deab4e (diff) | |
download | brdo-a3ca3f20cc9407b1421368534cae033c2fb33b0e.tar.gz brdo-a3ca3f20cc9407b1421368534cae033c2fb33b0e.tar.bz2 |
- Patch #635356 by c960657: fixed escaping in taxonomy autocomplete.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/taxonomy/taxonomy.pages.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } } |