Make WordPress Core

Changeset 26283


Ignore:
Timestamp:
11/20/2013 03:02:30 AM (11 years ago)
Author:
dd32
Message:

Remove the active row theme/plugin styling on Dashboard -> Updates. Fixes #26125

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/update-core.php

    r26192 r26283  
    269269
    270270        echo "
    271     <tr class='active'>
     271    <tr>
    272272        <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
    273273        <td><p><strong>{$plugin_data->Name}</strong><br />" . sprintf(__('You have version %1$s installed. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . ' ' . $details . $compat . $upgrade_notice . "</p></td>
     
    317317    foreach ( $themes as $stylesheet => $theme ) {
    318318        echo "
    319     <tr class='active'>
     319    <tr>
    320320        <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr( $stylesheet ) . "' /></th>
    321321        <td class='plugin-title'><img src='" . esc_url( $theme->get_screenshot() ) . "' width='85' height='64' style='float:left; padding: 0 5px 5px' /><strong>" . $theme->display('Name') . '</strong> ' . sprintf( __( 'You have version %1$s installed. Update to %2$s.' ), $theme->display('Version'), $theme->update['new_version'] ) . "</td>
Note: See TracChangeset for help on using the changeset viewer.