Make WordPress Core

Changeset 21160


Ignore:
Timestamp:
06/28/2012 07:34:25 PM (13 years ago)
Author:
nacin
Message:

WP.org no longer returns this old structure. The title of the item is the plugin name in full. fixes #21012.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r21003 r21160  
    962962            continue;
    963963
    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() );
    970965
    971966        $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.