From 07a421af1f87615adbb1c974591909441502a7b6 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 26 Sep 2010 09:37:25 +0000 Subject: [PATCH] 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 --- wp-admin/comment.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-admin/comment.php b/wp-admin/comment.php index ed77bf6c42..e408b12256 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -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' :
-

+