diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2008-12-17 21:00:03 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2008-12-17 21:00:03 -0500 |
commit | c895d2f41b0737f8a2799d36beca087e6b642f05 (patch) | |
tree | f6243c7c270bbec4f5e0d01547b2c6048cea200f /pages/blog.php | |
parent | e3ffdb84d705dd1a1000fa91a49cc6c58fc58e05 (diff) | |
download | fourisland-c895d2f41b0737f8a2799d36beca087e6b642f05.tar.gz fourisland-c895d2f41b0737f8a2799d36beca087e6b642f05.tar.bz2 fourisland-c895d2f41b0737f8a2799d36beca087e6b642f05.zip |
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.
Diffstat (limited to 'pages/blog.php')
-rwxr-xr-x | pages/blog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/blog.php b/pages/blog.php index d55f9a4..a03d3b1 100755 --- a/pages/blog.php +++ b/pages/blog.php | |||
@@ -72,7 +72,7 @@ if (isset($_GET['post'])) | |||
72 | 'TITLE' => $getpost3['title'], | 72 | 'TITLE' => $getpost3['title'], |
73 | 'AUTHOR' => $getpost3['author'], | 73 | 'AUTHOR' => $getpost3['author'], |
74 | 'RATING' => $getpost3['rating'], | 74 | 'RATING' => $getpost3['rating'], |
75 | 'TEXT' => parseBBCode($getpost3['text']))); | 75 | 'TEXT' => parseText($getpost3['text']))); |
76 | 76 | ||
77 | $tags = getTags($getpost3['id']); | 77 | $tags = getTags($getpost3['id']); |
78 | foreach ($tags as $tag) | 78 | foreach ($tags as $tag) |