Make WordPress Core


Ignore:
Timestamp:
06/05/2014 04:51:55 AM (9 years ago)
Author:
SergeyBiryukov
Message:

Remove redundant 'Visit author homepage' title attributes for plugins and themes.

props joedolson.
fixes #26554.

File:
1 edited

Legend:

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

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