From 9ac496ee2007bbdc3fb8394f658d30330bcb0a2e Mon Sep 17 00:00:00 2001 From: Alex King Date: Wed, 7 Jan 2004 02:28:32 +0000 Subject: [PATCH] commented out smiley conversion in comments RSS git-svn-id: https://develop.svn.wordpress.org/trunk@734 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/template-functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php index 63eca98ae0..7dd036ac64 100644 --- a/wp-includes/template-functions.php +++ b/wp-includes/template-functions.php @@ -1785,7 +1785,8 @@ function comment_text_rss() { $comment_text = convert_chars($comment_text); $comment_text = convert_bbcode($comment_text); $comment_text = convert_gmcode($comment_text); - $comment_text = convert_smilies($comment_text); +// smiley conversion is breaking things +// $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);