From 5fbb3a3baa18254e97b9d763e3fb8c222288df60 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 5 Jun 2007 14:41:29 +0000 Subject: [PATCH] Remove comment_text filter from get_comment_to_edit. fixes #4403 for 2.2 git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5656 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-admin/admin-functions.php b/wp-admin/admin-functions.php index ff867da288..a7930f6114 100644 --- a/wp-admin/admin-functions.php +++ b/wp-admin/admin-functions.php @@ -402,7 +402,6 @@ function get_comment_to_edit( $id ) { $comment->comment_ID = (int) $comment->comment_ID; $comment->comment_post_ID = (int) $comment->comment_post_ID; - $comment->comment_content = apply_filters( 'comment_text', $comment->comment_content ); $comment->comment_content = format_to_edit( $comment->comment_content ); $comment->comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content);