From cb5fcf636b430b39b77ea2d7f0a43e319bfd096d Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@15665 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 ed77bf6c4..e408b1225 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' :
-

+