Changes between Initial Version and Version 2 of Ticket #11699
- Timestamp:
- 04/14/10 19:32:28 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11699
- Property Milestone changed from Unassigned to 3.0
-
Ticket #11699 – Description
initial v2 6 6 7 7 A (but possibly the wrong) fix is to strip the anchor tags using: 8 8 {{{ 9 9 1265a1266,1268 10 >$allowed_html_in_titles = $allowedtags;11 >unset($allowed_html_in_titles['a']);12 >$title = wp_kses($title, $allowed_html_in_titles);13 10 $allowed_html_in_titles = $allowedtags; 11 unset($allowed_html_in_titles['a']); 12 $title = wp_kses($title, $allowed_html_in_titles); 13 }}} 14 14 applied to wp-includes/link-template.php 15 15