Remove comment_text filter from get_comment_to_edit. fixes #4403 for 2.3

git-svn-id: http://svn.automattic.com/wordpress/trunk@5655 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-06-05 14:41:02 +00:00
parent 539b2e48f0
commit d5f3d0c2d7

View File

@ -46,7 +46,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);