Typo in filter

git-svn-id: https://develop.svn.wordpress.org/trunk@2150 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-01-26 20:35:13 +00:00
parent 4eed05c1f7
commit 97691eb22b
1 changed files with 1 additions and 1 deletions

View File

@ -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) );