Changeset 9879
- Timestamp:
- 11/25/2008 09:11:05 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
-
css/colors-fresh.css (modified) (1 diff)
-
edit-form-advanced.php (modified) (1 diff)
-
includes/template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-fresh.css
r9865 r9879 554 554 } 555 555 556 #edit-slug-box strong, .tablenav .displaying-num {556 #edit-slug-box strong, .tablenav .displaying-num, #submitted-on { 557 557 color: #777; 558 558 } -
trunk/wp-admin/edit-form-advanced.php
r9871 r9879 426 426 <thead> 427 427 <tr> 428 <th scope="col" class="column-author"><?php _e('Author') ?></th> 428 429 <th scope="col" class="column-comment"><?php echo _c('Comment|noun') ?></th> 429 <th scope="col" class="column-author"><?php _e('Author') ?></th>430 <th scope="col" class="column-date"><?php _e('Submitted') ?></th>431 430 </tr> 432 431 </thead> -
trunk/wp-admin/includes/template.php
r9876 r9879 765 765 $_wp_column_headers[$page] = array( 766 766 'cb' => '<input type="checkbox" />', 767 'author' => __('Author'), 767 768 'comment' => _c('Comment|noun'), 768 'author' => __('Author'), 769 'date' => __('Submitted'), 769 //'date' => __('Submitted'), 770 770 'response' => __('In Response To') 771 771 ); … … 1925 1925 1926 1926 if ( current_user_can( 'edit_post', $post->ID ) ) { 1927 $post_link = "<a href='" . get_edit_post_link($post->ID) . "'>"; 1927 $post_href = get_edit_post_link($post->ID); 1928 $post_link = "<a href='" . $post_href . "'>"; 1928 1929 $post_link .= get_the_title($comment->comment_post_ID) . '</a>'; 1929 1930 } else { 1931 $post_href = ''; 1930 1932 $post_link = get_the_title($comment->comment_post_ID); 1931 1933 } … … 1970 1972 case 'comment': 1971 1973 echo "<td $attributes>"; 1972 if ( 'detail' == $mode || 'single' == $mode ) comment_text(); ?> 1974 echo '<div id="submitted-on">'; 1975 if ( !empty($post_href) ) 1976 printf(__('Submitted on <a href="%1$s">%2$s at %3$s</a>'), $post_href, get_comment_date(__('Y/m/d')), get_comment_date(__('g:ia'))); 1977 else 1978 printf(__('Submitted on %1$s at %2$s</a>'), get_comment_date(__('Y/m/d')), get_comment_date(__('g:ia'))); 1979 echo '</div>'; 1980 comment_text(); ?> 1973 1981 <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden"> 1974 1982 <textarea class="comment" rows="3" cols="10"><?php echo $comment->comment_content; ?></textarea>
Note: See TracChangeset
for help on using the changeset viewer.