Comments: Wrap the formatted comment text on the comment moderation screen in `comment_text()` so paragraphs and texturisation are applied.

Fixes #34133

Built from https://develop.svn.wordpress.org/trunk@37158


git-svn-id: http://core.svn.wordpress.org/trunk@37124 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2016-04-04 23:33:27 +00:00
parent 217b3b6487
commit 32b262fa1c
2 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
<tr> <tr>
<th scope="row"><?php /* translators: field name in comment form */ _ex('Comment', 'noun'); ?></th> <th scope="row"><?php /* translators: field name in comment form */ _ex('Comment', 'noun'); ?></th>
<td> <td>
<?php echo $comment->comment_content; ?> <?php comment_text( $comment ); ?>
<p><a href="<?php echo admin_url( "comment.php?action=editcomment&amp;c={$comment->comment_ID}" ); ?>"><?php esc_attr_e( 'Edit' ); ?></a></p> <p><a href="<?php echo admin_url( "comment.php?action=editcomment&amp;c={$comment->comment_ID}" ); ?>"><?php esc_attr_e( 'Edit' ); ?></a></p>
</td> </td>
</tr> </tr>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-RC1-37157'; $wp_version = '4.5-RC1-37158';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.