From 82c593a55839bfdf6e78e8782b79df37c3bc4904 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Sun, 4 Jan 2004 00:48:29 +0000 Subject: [PATCH] Smilies fix. git-svn-id: http://svn.automattic.com/wordpress/trunk@710 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php index 8ed4cfaac..98c3adbf8 100644 --- a/wp-includes/template-functions.php +++ b/wp-includes/template-functions.php @@ -1730,10 +1730,10 @@ function comment_text() { $comment_text = convert_chars($comment_text); $comment_text = convert_bbcode($comment_text); $comment_text = convert_gmcode($comment_text); - $comment_text = convert_smilies($comment_text); $comment_text = make_clickable($comment_text); $comment_text = balanceTags($comment_text,1); $comment_text = apply_filters('comment_text', $comment_text); + $comment_text = convert_smilies($comment_text); echo $comment_text; }