From e8b955bd48640aee4039cfdaede20d2d0d9ddef1 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sun, 6 Jun 2010 14:44:48 +0000 Subject: [PATCH] Typo fix. Props pedger, mattsains. fixes #13740 git-svn-id: https://develop.svn.wordpress.org/trunk@15149 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/pluggable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 5f7a35e2af..b519832303 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1111,7 +1111,7 @@ function wp_notify_moderator($comment_id) { switch ($comment->comment_type) { case 'trackback': - $notify_message = sprintf( __('A new trackback on the post"%s" is waiting for your approval'), $post->post_title ) . "\r\n"; + $notify_message = sprintf( __('A new trackback on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n";