diff options
author | Friendika <info@friendika.com> | 2010-12-08 17:05:51 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-08 17:05:51 -0800 |
commit | eb13833d2a81dbe3bc11039061f718846e7f5be9 (patch) | |
tree | b9c5165bb39868385a5a3becb12c072a372d0688 /mod | |
parent | 4d0f0f9a9413ae7826c8eb1573eb4e5873c0ed3a (diff) | |
download | volse-hubzilla-eb13833d2a81dbe3bc11039061f718846e7f5be9.tar.gz volse-hubzilla-eb13833d2a81dbe3bc11039061f718846e7f5be9.tar.bz2 volse-hubzilla-eb13833d2a81dbe3bc11039061f718846e7f5be9.zip |
smiley filter
Diffstat (limited to 'mod')
-rw-r--r-- | mod/display.php | 2 | ||||
-rw-r--r-- | mod/network.php | 2 | ||||
-rw-r--r-- | mod/profile.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mod/display.php b/mod/display.php index ec036de62..369161619 100644 --- a/mod/display.php +++ b/mod/display.php @@ -249,7 +249,7 @@ function display_content(&$a) { '$osparkle' => $osparkle, '$thumb' => $profile_avatar, '$title' => $item['title'], - '$body' => bbcode($item['body']), + '$body' => smilies(bbcode($item['body'])), '$ago' => relative_date($item['created']), '$lock' => $lock, '$location' => $location, diff --git a/mod/network.php b/mod/network.php index c52bb74fc..43c55b8e3 100644 --- a/mod/network.php +++ b/mod/network.php @@ -292,7 +292,7 @@ function network_content(&$a, $update = 0) { '$osparkle' => $osparkle, '$sparkle' => $sparkle, '$title' => $item['title'], - '$body' => bbcode($item['body']), + '$body' => smilies(bbcode($item['body'])), '$ago' => relative_date($item['created']), '$lock' => $lock, '$location' => $location, diff --git a/mod/profile.php b/mod/profile.php index d09e0187b..a431f4bdd 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -388,7 +388,7 @@ function profile_content(&$a, $update = 0) { '$thumb' => $profile_avatar, '$sparkle' => $sparkle, '$title' => $item['title'], - '$body' => bbcode($item['body']), + '$body' => smilies(bbcode($item['body'])), '$ago' => relative_date($item['created']), '$lock' => $lock, '$location' => $location, |