Changeset 8338 for branches/crazyhorse/wp-admin/edit-attachment-rows.php
- Timestamp:
- 07/15/2008 03:33:34 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crazyhorse/wp-admin/edit-attachment-rows.php
r8154 r8338 48 48 case 'icon': 49 49 ?> 50 <td class="media-icon"><?php echo wp_get_attachment_link($post->ID, array(80, 60), false, true); ?></td> 50 <td class="media-icon"><?php 51 if ( $thumb = wp_get_attachment_image( $post->ID, array(80, 60), true ) ) { 52 ?> 53 54 <a href="media.php?action=edit&attachment_id=<?php the_ID(); ?>" title="<?php echo attribute_escape(sprintf(__('Edit "%s"'), $att_title)); ?>"> 55 <?php echo $thumb; ?> 56 </a> 57 58 <?php } 59 ?></td> 51 60 <?php 52 61 // TODO
Note: See TracChangeset
for help on using the changeset viewer.