Changeset 11026 for trunk/wp-admin/includes/template.php
- Timestamp:
- 04/21/2009 05:01:04 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r11013 r11026 2200 2200 } 2201 2201 echo "<td $attributes>\n"; 2202 echo $post_link;2203 2204 2202 echo '<div class="response-links"><span class="post-com-count-wrapper">'; 2203 echo $post_link . '<br />'; 2205 2204 $pending_phrase = sprintf( __('%s pending'), number_format( $pending_comments ) ); 2206 2205 if ( $pending_comments ) … … 2211 2210 echo '</span> '; 2212 2211 echo "<a href='" . get_permalink( $post->ID ) . "'>#</a>"; 2213 echo '</div></td>'; 2212 echo '</div>'; 2213 if ( 'attachment' == $post->post_type && ( $thumb = wp_get_attachment_image( $post->ID, array(80, 60), true ) ) ) 2214 echo $thumb; 2215 echo '</td>'; 2214 2216 } 2215 2217 break;
Note: See TracChangeset
for help on using the changeset viewer.