Changeset 8450
- Timestamp:
- 07/25/08 04:28:52 (1 month ago)
- Files:
-
- branches/crazyhorse/wp-admin/edit-comments.php (modified) (1 diff)
- branches/crazyhorse/wp-admin/includes/template.php (modified) (2 diffs)
- branches/crazyhorse/wp-admin/wp-admin.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/crazyhorse/wp-admin/edit-comments.php
r8439 r8450 201 201 <tr> 202 202 <th scope="col" class="check-column"><input type="checkbox" /></th> 203 <th scope="col"><?php _e('Comment') ?></th> 203 <th scope="col" class="comment-column"><?php _e('Comment') ?></th> 204 <th scope="col" class="author-column"><?php _e('Author') ?></th> 204 205 <th scope="col"><?php _e('Comment Submitted') ?></th> 205 206 <th scope="col"><?php _e('In Response To This Post') ?></th> branches/crazyhorse/wp-admin/includes/template.php
r8447 r8450 764 764 <td class="check-column"><?php if ( current_user_can('edit_post', $comment->comment_post_ID) ) { ?><input type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" /><?php } ?></td> 765 765 <?php endif; ?> 766 <td class="comment ">766 <td class="comment-column"> 767 767 <?php if ( 'detail' == $mode || 'single' == $mode ) comment_text(); ?> 768 <p class="comment-author"><strong><?php comment_author(); ?></strong> | 769 <?php if ( !empty($author_url) ) : ?> 770 <a href="<?php echo $author_url ?>"><?php echo $author_url_display; ?></a> | 771 <?php endif; ?> 772 <?php if ( current_user_can( 'edit_post', $post->ID ) ) : ?> 773 <?php if ( !empty($comment->comment_author_email) ): ?> 774 <?php comment_author_email_link() ?> | 775 <?php endif; ?> 776 <a href="edit-comments.php?s=<?php comment_author_IP() ?>&mode=detail"><?php comment_author_IP() ?></a> 777 <?php endif; //current_user_can?> 778 </p> 768 779 769 <?php 780 770 $actions = array(); … … 808 798 ?> 809 799 </td> 800 <td class="author-column"> 801 <strong><?php comment_author(); ?></strong><br /> 802 <?php if ( !empty($author_url) ) : ?> 803 <a href="<?php echo $author_url ?>"><?php echo $author_url_display; ?></a><br /> 804 <?php endif; ?> 805 <?php if ( current_user_can( 'edit_post', $post->ID ) ) : ?> 806 <?php if ( !empty($comment->comment_author_email) ): ?> 807 <?php comment_author_email_link() ?><br /> 808 <?php endif; ?> 809 <a href="edit-comments.php?s=<?php comment_author_IP() ?>&mode=detail"><?php comment_author_IP() ?></a> 810 <?php endif; //current_user_can?> 811 </td> 810 812 <td><?php comment_date(__('Y/m/d \a\t g:ia')); ?></td> 811 813 <?php if ( 'single' !== $mode ) : ?> branches/crazyhorse/wp-admin/wp-admin.css
r8449 r8450 504 504 505 505 .comment-column { 506 margin-left: 5px; 506 width: 50%; 507 } 508 509 .comment-column p { 510 margin-top: 0; 511 } 512 513 .author-column { 514 width: 20%; 515 } 516 517 .author-column img { 518 float: left; 519 margin-right: 10px; 520 margin-top: 3px; 507 521 } 508 522
