From b4c8ae6c9b3fe5e2f14874217aebc29ee8fb1837 Mon Sep 17 00:00:00 2001 From: alex_t_king Date: Wed, 7 Jan 2004 03:00:10 +0000 Subject: [PATCH] re-enabling smilies in comments rss git-svn-id: http://svn.automattic.com/wordpress/trunk@735 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php index 7dd036ac6..63eca98ae 100644 --- a/wp-includes/template-functions.php +++ b/wp-includes/template-functions.php @@ -1785,8 +1785,7 @@ function comment_text_rss() { $comment_text = convert_chars($comment_text); $comment_text = convert_bbcode($comment_text); $comment_text = convert_gmcode($comment_text); -// smiley conversion is breaking things -// $comment_text = convert_smilies($comment_text); + $comment_text = convert_smilies($comment_text); $comment_text = apply_filters('comment_text', $comment_text); $comment_text = strip_tags($comment_text); $comment_text = htmlspecialchars($comment_text);