Changeset 28673 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 06/05/2014 04:51:55 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r28644 r28673 161 161 if ( $markup ) { 162 162 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>'; 164 164 165 165 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>'; 167 167 168 168 $plugin_data['Description'] = wptexturize( $plugin_data['Description'] );
Note: See TracChangeset
for help on using the changeset viewer.