From aa9db422bfdcb028e5a4f0055cf731b310fd4b8a Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sun, 18 Apr 2010 07:32:59 +0000 Subject: [PATCH] Fix typo in unspamed comments message git-svn-id: https://develop.svn.wordpress.org/trunk@14142 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit-comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index b5335acb3d..4167106b19 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -160,7 +160,7 @@ if ( isset($_GET['approved']) || isset($_GET['deleted']) || isset($_GET['trashed } if ( $unspammed > 0 ) - $messages = sprintf( _n( '%s comment restored from the spam', '%s comments restored from the spam', $unspammed ), $unspammed ); + $messages[] = sprintf( _n( '%s comment restored from the spam', '%s comments restored from the spam', $unspammed ), $unspammed ); if ( $trashed > 0 ) { $ids = isset($_GET['ids']) ? $_GET['ids'] : 0;