mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Add missing 'Moderate Comment' $title to comment.php. props MattyRob, fixes #14139.
git-svn-id: https://develop.svn.wordpress.org/trunk@15665 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -77,6 +77,8 @@ case 'approve' :
|
||||
case 'trash' :
|
||||
case 'spam' :
|
||||
|
||||
$title = __('Moderate Comment');
|
||||
|
||||
$comment_id = absint( $_GET['c'] );
|
||||
|
||||
if ( !$comment = get_comment_to_edit( $comment_id ) ) {
|
||||
@@ -107,7 +109,7 @@ case 'spam' :
|
||||
<div class="narrow">
|
||||
|
||||
<?php screen_icon(); ?>
|
||||
<h2><?php esc_html_e( 'Moderate Comment' ); ?></h2>
|
||||
<h2><?php esc_html( $title ); ?></h2>
|
||||
|
||||
<?php
|
||||
switch ( $action ) {
|
||||
|
||||
Reference in New Issue
Block a user