From 46df98f327b0c5456de0c03067cde56801f280ad Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 22 Sep 2005 21:14:52 +0000 Subject: [PATCH] Typos git-svn-id: http://svn.automattic.com/wordpress/trunk@2905 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index 842135ef6..499f23762 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -45,7 +45,7 @@ function wp_new_comment( $commentdata ) { $comment_ID = wp_insert_comment($commentdata); - do_action('comment_post', $comment_ID, $commentdata['approved']); + do_action('comment_post', $comment_ID, $commentdata['comment_approved']); if ( 'spam' !== $commentdata['comment_approved'] ) { // If it's spam save it silently for later crunching if ( '0' == $commentdata['comment_approved'] ) @@ -55,7 +55,7 @@ function wp_new_comment( $commentdata ) { wp_notify_postauthor($comment_ID, $commentdata['comment_type']); } - return $comment_id; + return $comment_ID; } function wp_insert_comment($commentdata) {