Changeset 9248
- Timestamp:
- 10/19/2008 08:11:43 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r9247 r9248 1944 1944 break; 1945 1945 case 'response': 1946 echo "<td $attributes>\n"; 1947 echo ""$post_link" "; 1948 echo '<a href="edit-comments.php?p=' . $post->ID; 1949 if ( !empty($_GET['comment_type']) ) echo '&comment_type=' . htmlspecialchars( $_GET['comment_type'] ); 1950 echo '">' . sprintf ( __ngettext('(%s comment)', '(%s comments)', $post->comment_count), $post->comment_count ) . '</a><br />'; 1951 echo get_the_time(__('Y/m/d \a\t g:ia')); 1952 echo '</td>'; 1946 if ( 'single' !== $mode ) { 1947 echo "<td $attributes>\n"; 1948 echo ""$post_link" "; 1949 echo '<a href="edit-comments.php?p=' . $post->ID; 1950 if ( !empty($_GET['comment_type']) ) echo '&comment_type=' . htmlspecialchars( $_GET['comment_type'] ); 1951 echo '">' . sprintf ( __ngettext('(%s comment)', '(%s comments)', $post->comment_count), $post->comment_count ) . '</a><br />'; 1952 echo get_the_time(__('Y/m/d \a\t g:ia')); 1953 echo '</td>'; 1954 } 1953 1955 } 1954 1956 }
Note: See TracChangeset
for help on using the changeset viewer.