Skip to content
Snippets Groups Projects
Commit a3ca3f20 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #635356 by c960657: fixed escaping in taxonomy autocomplete.

parent 49db9562
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment