From c895d2f41b0737f8a2799d36beca087e6b642f05 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Wed, 17 Dec 2008 21:00:03 -0500 Subject: Added an emoticon parsing system I decided that, because I use the :) emoticon so often, I might as well replace it with an actual image. I've added a Smiley parsing system to complement the BBCode parsing one. --- includes/comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/comments.php') diff --git a/includes/comments.php b/includes/comments.php index bf73318..15e9fc8 100755 --- a/includes/comments.php +++ b/includes/comments.php @@ -71,7 +71,7 @@ while ($getcomments3[$i] = mysql_fetch_array($getcomments2)) 'USERNAME' => (($website != '') ? '' . $username . '' : $username), 'DATE' => date("F dS Y \a\\t g:i:s a",strtotime($getcomments3[$i]['posttime'])), 'ID' => $getcomments3[$i]['id'], - 'TEXT' => parseBBCode($getcomments3[$i]['comment']))); + 'TEXT' => parseText($getcomments3[$i]['comment']))); } $i++; } -- cgit 1.4.1