Add missing 'Moderate Comment' $title to comment.php. props MattyRob, fixes #14139.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15665 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-09-26 09:37:25 +00:00
parent b205913daa
commit cb5fcf636b
1 changed files with 3 additions and 1 deletions

View File

@ -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 ) {