diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php
index 55499c0..0fdf37e 100644
a
|
b
|
function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { |
742 | 742 | <p class="comment-author"><?php comment_author_link( $comment ); ?></p> |
743 | 743 | |
744 | 744 | <?php endif; // comment_type ?> |
745 | | <blockquote><p><?php comment_excerpt( $comment ); ?></p></blockquote> |
| 745 | <blockquote> |
| 746 | <p> |
| 747 | <?php |
| 748 | if ( $comment->comment_approved ) { |
| 749 | comment_excerpt( $comment ); |
| 750 | } else { |
| 751 | echo $comment->comment_content; |
| 752 | } |
| 753 | ?> |
| 754 | </p> |
| 755 | </blockquote> |
746 | 756 | <?php if ( $actions_string ) : ?> |
747 | 757 | <p class="row-actions"><?php echo $actions_string; ?></p> |
748 | 758 | <?php endif; ?> |