Changeset 45926 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r45917 r45926 210 210 211 211 if ( $plugin_data['Author'] ) { 212 $plugin_data['Description'] .= ' <cite>' . sprintf( __( 'By %s.' ), $plugin_data['Author'] ) . '</cite>'; 212 $plugin_data['Description'] .= sprintf( 213 /* translators: %s: plugin author */ 214 ' <cite>' . __( 'By %s.' ) . '</cite>', 215 $plugin_data['Author'] 216 ); 213 217 } 214 218 }
Note: See TracChangeset
for help on using the changeset viewer.