diff options
author | friendica <info@friendica.com> | 2012-12-16 20:20:29 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-16 20:20:29 -0800 |
commit | e9b5b0f0b424930b87708080c4e6ce671016177b (patch) | |
tree | 436092bdee53c0e2a195bb0cc580c5cbc1c6e731 /include/ItemObject.php | |
parent | fa8b4e98b727a2af58fea55e93546089fe9bea2b (diff) | |
download | volse-hubzilla-e9b5b0f0b424930b87708080c4e6ce671016177b.tar.gz volse-hubzilla-e9b5b0f0b424930b87708080c4e6ce671016177b.tar.bz2 volse-hubzilla-e9b5b0f0b424930b87708080c4e6ce671016177b.zip |
several small fixes and adjustments
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index 09f5d1298..45ea6860a 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -209,7 +209,7 @@ class Item extends BaseObject { 'type' => implode("",array_slice(explode("/",$item['verb']),-1)), 'tags' => $tags, - 'body' => template_escape($body), + 'body' => $body, 'text' => strip_tags(template_escape($body)), 'id' => $this->get_id(), 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), |