Changeset 6997 for trunk/wp-admin/includes/template.php
- Timestamp:
- 02/24/2008 02:07:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r6995 r6997 43 43 $pad = str_repeat( '— ', $level ); 44 44 if ( current_user_can( 'manage_categories' ) ) { 45 $edit = "<a href='categories.php?action=edit&cat_ID=$category->term_id'>". ( $name_override ? $name_override : $pad . ' ' . $category->name ) ."</a>";45 $edit = "<a class='row-title' href='categories.php?action=edit&cat_ID=$category->term_id'>". ( $name_override ? $name_override : $pad . ' ' . $category->name ) ."</a>"; 46 46 $default_cat_id = (int) get_option( 'default_category' ); 47 47 } else { … … 71 71 72 72 if ( current_user_can( 'manage_categories' ) ) { 73 $edit = "<a href='link-category.php?action=edit&cat_ID=$category->term_id' class='edit'>". ( $name_override ? $name_override : $category->name ) ."</a>";73 $edit = "<a class='row-title' href='link-category.php?action=edit&cat_ID=$category->term_id' class='edit'>". ( $name_override ? $name_override : $category->name ) ."</a>"; 74 74 $default_cat_id = (int) get_option( 'default_link_category' ); 75 75 } else { … … 236 236 $out .= '<tr id="tag-' . $tag->term_id . '"' . $class . '>'; 237 237 $out .= '<th scope="row" class="check-column"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></th>'; 238 $out .= '<td>< ahref="edit-tags.php?action=edit&tag_ID=' . $tag->term_id . '">' .238 $out .= '<td><strong><a class="row-title" href="edit-tags.php?action=edit&tag_ID=' . $tag->term_id . '">' . 239 239 apply_filters( 'term_name', $tag->name ) . '</a></td>'; 240 240 … … 300 300 $posts_columns['tags'] = __('Tags'); 301 301 if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) ) 302 $posts_columns['comments'] = '< div style="text-align: center"><img alt="" src="images/comment-grey-bubble.png" /></div>';302 $posts_columns['comments'] = '<img class="comment-column" alt="Comments" src="images/comment-grey-bubble.png" /></div>'; 303 303 $posts_columns['status'] = __('Status'); 304 304 $posts_columns = apply_filters('manage_posts_columns', $posts_columns); … … 404 404 $title = __('(no title)'); 405 405 ?> 406 <td><strong><a href="page.php?action=edit&post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong>406 <td><strong><a class="row-title" href="page.php?action=edit&post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong> 407 407 <?php if ('private' == $page->post_status) _e(' — <strong>Private</strong>'); ?></td> 408 408 <?php
Note: See TracChangeset
for help on using the changeset viewer.