From 8d7769dd6bde022dd8d9727732dc8b2d6e954f0d Mon Sep 17 00:00:00 2001 From: saxmatt Date: Wed, 26 Jan 2005 20:35:13 +0000 Subject: [PATCH] Typo in filter git-svn-id: http://svn.automattic.com/wordpress/trunk@2150 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions-post.php b/wp-includes/functions-post.php index eb5e5424bf..9eff988337 100644 --- a/wp-includes/functions-post.php +++ b/wp-includes/functions-post.php @@ -434,7 +434,7 @@ function wp_new_comment( $commentdata, $spam = false ) { $url = apply_filters('pre_comment_author_url', $comment_author_url); $comment = apply_filters('pre_comment_content', $comment_content); $comment = apply_filters('post_comment_text', $comment); // Deprecated - $comment = apply_filters('comment_content_presave', $comment_content); // Deprecated + $comment = apply_filters('comment_content_presave', $comment); // Deprecated $user_ip = apply_filters('pre_comment_user_ip', $_SERVER['REMOTE_ADDR']); $user_domain = apply_filters('pre_comment_user_domain', gethostbyaddr($user_ip) );