Make WordPress Core


Ignore:
Timestamp:
07/08/2013 01:04:07 PM (11 years ago)
Author:
nacin
Message:

Revert [23394] until there is a consensus on target="_blank" (or not) for these external links. see #20839.

File:
1 edited

Legend:

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

    r23394 r24583  
    158158    if ( $markup ) {
    159159        if ( $plugin_data['PluginURI'] && $plugin_data['Name'] )
    160             $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="' . esc_attr__( 'Visit plugin homepage' ) . '" target="_blank">' . $plugin_data['Name'] . '</a>';
     160            $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="' . esc_attr__( 'Visit plugin homepage' ) . '">' . $plugin_data['Name'] . '</a>';
    161161
    162162        if ( $plugin_data['AuthorURI'] && $plugin_data['Author'] )
    163             $plugin_data['Author'] = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . esc_attr__( 'Visit author homepage' ) . '" target="_blank">' . $plugin_data['Author'] . '</a>';
     163            $plugin_data['Author'] = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . esc_attr__( 'Visit author homepage' ) . '">' . $plugin_data['Author'] . '</a>';
    164164
    165165        $plugin_data['Description'] = wptexturize( $plugin_data['Description'] );
Note: See TracChangeset for help on using the changeset viewer.