Changeset 9180
- Timestamp:
- 10/15/08 05:39:40 (2 months ago)
- Files:
-
- trunk/wp-admin/edit-attachment-rows.php (modified) (1 diff)
- trunk/wp-admin/includes/template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-attachment-rows.php
r9041 r9180 92 92 } 93 93 ?></p></td> 94 <?php 95 break; 96 97 case 'author': 98 ?> 99 <td <?php echo $attributes ?>><?php the_author() ?></td> 94 100 <?php 95 101 break; trunk/wp-admin/includes/template.php
r9174 r9180 708 708 $posts_columns['cb'] = '<input type="checkbox" />'; 709 709 $posts_columns['icon'] = ''; 710 $posts_columns['media'] = _c('Media|media column header'); 710 $posts_columns['media'] = _c('File|media column header'); 711 $posts_columns['author'] = __('Author'); 711 712 $posts_columns['tags'] = _c('Tags|media column header'); 712 // $posts_columns['desc'] = _c('Description|media column header'); 713 $posts_columns['date'] = _c('Date Added|media column header'); 714 $posts_columns['parent'] = _c('Appears with|media column header'); 713 $posts_columns['parent'] = _c('Attached to|media column header'); 715 714 //$posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>'; 716 715 $posts_columns['comments'] = __('Comments'); 717 // $posts_columns['actions'] = _c('Actions|media column header');716 $posts_columns['date'] = _c('Date|media column header'); 718 717 $posts_columns = apply_filters('manage_media_columns', $posts_columns); 719 718
