Changeset 24583 for trunk/wp-admin/includes/plugin.php
- Timestamp:
- 07/08/2013 01:04:07 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/plugin.php
r23394 r24583 158 158 if ( $markup ) { 159 159 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>'; 161 161 162 162 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>'; 164 164 165 165 $plugin_data['Description'] = wptexturize( $plugin_data['Description'] );
Note: See TracChangeset
for help on using the changeset viewer.