aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-15 19:21:32 -0700
committerfriendica <info@friendica.com>2014-06-15 19:21:32 -0700
commite1ec1e7c5fd5ca38b6ed87f8664f5718879c4364 (patch)
tree2fcbf3e40bd635852a3541f20b14b40e015202be /include/conversation.php
parent0e4a28678df0c25a69e87eb3f75398d2b12bd015 (diff)
downloadvolse-hubzilla-e1ec1e7c5fd5ca38b6ed87f8664f5718879c4364.tar.gz
volse-hubzilla-e1ec1e7c5fd5ca38b6ed87f8664f5718879c4364.tar.bz2
volse-hubzilla-e1ec1e7c5fd5ca38b6ed87f8664f5718879c4364.zip
sort out the unobscure mess
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php
index ee4952d7e..2933842a5 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1314,12 +1314,15 @@ function prepare_page($item) {
$naked = 1;
// ... other possible options
}
+
+ $body = prepare_body($item,true);
+
return replace_macros(get_markup_template('page_display.tpl'),array(
'$author' => (($naked) ? '' : $item['author']['xchan_name']),
'$auth_url' => (($naked) ? '' : zid($item['author']['xchan_url'])),
'$date' => (($naked) ? '' : datetime_convert('UTC',date_default_timezone_get(),$item['created'],'Y-m-d H:i')),
'$title' => smilies(bbcode($item['title'])),
- '$body' => prepare_body($item,true),
+ '$body' => $body,
'$preview' => $preview,
'$link' => $link,
));