Make WordPress Core

Changeset 7515


Ignore:
Timestamp:
03/26/2008 03:33:14 AM (17 years ago)
Author:
ryan
Message:

Markup fixes for plugins page from DD32. fixes #6383

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/plugins.php

    r7463 r7515  
    110110        <th class="num"><?php _e('Version'); ?></th>
    111111        <th><?php _e('Description'); ?></th>
    112         <th class="action-links" <?php if ( current_user_can('edit_plugins') ) echo ' colspan="2"'; ?>><?php _e('Action'); ?></th>
     112        <th class="action-links"><?php _e('Action'); ?></th>
    113113    </tr>
    114114    </thead>
     
    150150        <td class='vers'>{$plugin_data['Version']}</td>
    151151        <td class='desc'><p>{$plugin_data['Description']}$author</p></td>
    152         <td class='togl action-links'>$toggle"; if ( current_user_can('edit_plugins') ) echo "$edit</td>";
    153         echo"
     152        <td class='togl action-links'>$toggle"; 
     153        if ( current_user_can('edit_plugins') ) echo $edit;
     154        echo "</td>
    154155    </tr>";
    155156    do_action( 'after_plugin_row', $plugin_file );
Note: See TracChangeset for help on using the changeset viewer.