summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-02-05 22:14:43 +0000
committerDries Buytaert <dries@buytaert.net>2010-02-05 22:14:43 +0000
commita3ca3f20cc9407b1421368534cae033c2fb33b0e (patch)
tree6dc173321656b9f4b237f3bf130a3ff400f6d3e3 /modules
parent49db9562fa98425ce61729b233301d4242deab4e (diff)
downloadbrdo-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.inc2
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);
}
}
}