From 57d62ffdf33a05d70f51147a9d1e10c1a27ef5af Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sun, 4 Jan 2004 00:48:29 +0000 Subject: [PATCH] Smilies fix. git-svn-id: https://develop.svn.wordpress.org/trunk@710 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 8ed4cfaac3..98c3adbf87 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; }