Markup fixes for plugins page from DD32. fixes #6383

git-svn-id: http://svn.automattic.com/wordpress/trunk@7515 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-03-26 03:33:14 +00:00
parent d25d202e72
commit 7971f0a536
1 changed files with 4 additions and 3 deletions

View File

@ -109,7 +109,7 @@ if (empty($plugins)) {
<th><?php _e('Plugin'); ?></th>
<th class="num"><?php _e('Version'); ?></th>
<th><?php _e('Description'); ?></th>
<th class="action-links" <?php if ( current_user_can('edit_plugins') ) echo ' colspan="2"'; ?>><?php _e('Action'); ?></th>
<th class="action-links"><?php _e('Action'); ?></th>
</tr>
</thead>
<tbody id="plugins">
@ -149,8 +149,9 @@ if (empty($plugins)) {
<td class='name'>{$plugin_data['Title']}</td>
<td class='vers'>{$plugin_data['Version']}</td>
<td class='desc'><p>{$plugin_data['Description']}$author</p></td>
<td class='togl action-links'>$toggle"; if ( current_user_can('edit_plugins') ) echo "$edit</td>";
echo"
<td class='togl action-links'>$toggle";
if ( current_user_can('edit_plugins') ) echo $edit;
echo "</td>
</tr>";
do_action( 'after_plugin_row', $plugin_file );
}