Smilies fix.

git-svn-id: http://svn.automattic.com/wordpress/trunk@710 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-01-04 00:48:29 +00:00
parent f4e3970ec1
commit 82c593a558
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}