Changeset 21160
- Timestamp:
- 06/28/2012 07:34:25 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/dashboard.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r21003 r21160 962 962 continue; 963 963 964 // current bbPress feed item titles are: user on "topic title" 965 if ( preg_match( '/"(.*)"/s', $item->get_title(), $matches ) ) 966 $title = $matches[1]; 967 else // but let's make it forward compatible if things change 968 $title = $item->get_title(); 969 $title = esc_html( $title ); 964 $title = esc_html( $item->get_title() ); 970 965 971 966 $description = esc_html( strip_tags(@html_entity_decode($item->get_description(), ENT_QUOTES, get_option('blog_charset'))) );
Note: See TracChangeset
for help on using the changeset viewer.