Changeset 9733 for trunk/wp-admin/includes/template.php
- Timestamp:
- 11/17/2008 06:01:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r9716 r9733 709 709 $posts_columns['tags'] = _c('Tags|media column header'); 710 710 $posts_columns['parent'] = _c('Attached to|media column header'); 711 //$posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>';712 $posts_columns['comments'] = __('Comments');711 $posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>'; 712 //$posts_columns['comments'] = __('Comments'); 713 713 $posts_columns['date'] = _c('Date|media column header'); 714 714 $posts_columns = apply_filters('manage_media_columns', $posts_columns); … … 832 832 $hidden = (array) get_user_option( "manage-$type-columns-hidden" ); 833 833 $styles = array(); 834 $styles['tag']['posts'] = 'width: 90px;';835 $styles['link-category']['links'] = 'width: 90px;';836 $styles['category']['posts'] = 'width: 90px;';837 $styles['link']['visible'] = 'text-align: center;';834 // $styles['tag']['posts'] = 'width: 90px;'; 835 // $styles['link-category']['links'] = 'width: 90px;'; 836 // $styles['category']['posts'] = 'width: 90px;'; 837 // $styles['link']['visible'] = 'text-align: center;'; 838 838 839 839 foreach ( $columns as $column_key => $column_display_name ) { … … 1978 1978 echo "<td $attributes><strong>"; comment_author(); echo '</strong><br />'; 1979 1979 if ( !empty($author_url) ) 1980 echo "<a href='$author_url'>$author_url_display</a><br />";1980 echo "<a title='$author_url' href='$author_url'>$author_url_display</a><br />"; 1981 1981 if ( current_user_can( 'edit_post', $post->ID ) ) { 1982 1982 if ( !empty($comment->comment_author_email) ) { … … 2039 2039 2040 2040 <div id="edithead" style="display:none;"> 2041 <div id="edittitle"><?php _e('Edit Comment'); ?></div>2042 2043 2041 <div class="inside"> 2044 2042 <label for="author"><?php _e('Name') ?></label>
Note: See TracChangeset
for help on using the changeset viewer.