Changeset 11385
- Timestamp:
- 05/18/2009 04:56:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r11383 r11385 395 395 echo "</td> 396 396 <td class='desc'><p>{$plugin_data['Description']}</p>"; 397 if ( !empty($plugin_data['Version']) ) { 398 printf(__('Version: %s'), $plugin_data['Version']); 399 echo ' '; 400 } 397 $plugin_meta = array(); 398 if ( !empty($plugin_data['Version']) ) 399 $plugin_meta[] = sprintf(__('Version: %s'), $plugin_data['Version']); 401 400 if ( !empty($plugin_data['Author']) ) { 402 401 $author = $plugin_data['Author']; 403 402 if ( !empty($plugin_data['AuthorURI']) ) 404 403 $author = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . __( 'Visit author homepage' ) . '">' . $plugin_data['Author'] . '</a>'; 405 echo' <cite>' . sprintf( __('By: %s'), $author ) . '</cite>';404 $plugin_meta[] = ' <cite>' . sprintf( __('By: %s'), $author ) . '</cite>'; 406 405 } 406 $plugin_meta = apply_filters('plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $context); 407 echo implode(' ', $plugin_meta); 407 408 echo "</p>"; 408 409 echo '</td>
Note: See TracChangeset
for help on using the changeset viewer.