Restore bottom padding in plugin rows. fixes #15547.

git-svn-id: https://develop.svn.wordpress.org/trunk@16745 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2010-12-06 15:15:09 +00:00
parent d7ddf41809
commit 2c44ffcc57
4 changed files with 5 additions and 7 deletions
@@ -390,7 +390,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
$checkbox_id = md5($plugin_data['Name']) . "_checkbox";
$checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $plugin_data['Name'] . "</label>";
if ( 'dropins' != $context ) {
$description = '<p>' . $plugin_data['Description'] . '</p>';
$description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
$plugin_name = $plugin_data['Name'];
}