#14199 closed defect (bug) (fixed)
wp_rss() and get_rss() break UTF-8 titles
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.1 |
| Component: | Feeds | Version: | 3.0 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | SergeyBiryukov |
Description
The problem described in #10378 is also related to wp_rss() and get_rss(). They use htmlentities( $item['title'] ), which makes the title unreadable.
Though both functions have been deprecated, they still exist and therefore need to be fixed.
Attachments (1)
Note: See
TracTickets for help on using
tickets.

(In [16031]) Use esc_html. Ancient, deprecated functions, but a valid fix nonetheless. fixes #14199.