Changeset 6974 for trunk/wp-admin/edit-attachment-rows.php
- Timestamp:
- 02/22/2008 05:53:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-attachment-rows.php
r6910 r6974 47 47 case 'media': 48 48 ?> 49 <td><strong><a href="# TODO: upload.php?action=edit&post=<?php the_ID(); ?>"><?php the_title(); ?></a></strong> 49 <td><strong><a href="# TODO: upload.php?action=edit&post=<?php the_ID(); ?>"><?php the_title(); ?></a></strong><br /> 50 <?php echo strtoupper(preg_replace('/^.*?\.(\w+)$/', '$1', $post->guid)); ?> 51 <?php do_action('manage_media_media_column', $post->ID); ?> 52 </td> 50 53 <?php 51 // TODO52 54 break; 53 55 54 56 case 'desc': 55 57 ?> 56 <td><?php has_excerpt() ? the_excerpt() : null; ?></td>58 <td><?php echo has_excerpt() ? $post->post_excerpt : ''; ?></td> 57 59 <?php 58 // TODO59 60 break; 60 61 … … 93 94 <td><a href="<?php the_permalink(); ?>"><?php _e('Permalink'); ?></a></td> 94 95 <?php 95 // TODO96 96 break; 97 97 98 98 default: 99 99 ?> 100 <td><?php do_action('manage_ posts_custom_column', $column_name, $id); ?></td>100 <td><?php do_action('manage_media_custom_column', $column_name, $id); ?></td> 101 101 <?php 102 102 break;
Note: See TracChangeset
for help on using the changeset viewer.