diff options
author | Mario <mario@mariovavti.com> | 2021-03-10 11:09:49 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-10 11:09:49 +0000 |
commit | 15faf01ec960fff88a1f9c83fb6d251319cecea7 (patch) | |
tree | 4871c8c51fddc4a863d060e017326a481d654446 /Zotlabs | |
parent | 7ee495624e71125074a4eb9f5533a7af2db2f6b6 (diff) | |
download | volse-hubzilla-15faf01ec960fff88a1f9c83fb6d251319cecea7.tar.gz volse-hubzilla-15faf01ec960fff88a1f9c83fb6d251319cecea7.tar.bz2 volse-hubzilla-15faf01ec960fff88a1f9c83fb6d251319cecea7.zip |
do not parse bbcode in summary - issue #1532
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Item.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index f3e8e4e57..32c146bce 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -821,12 +821,10 @@ class Item extends Controller { // and will require alternatives for alternative content-types (text/html, text/markdown, text/plain, etc.) // we may need virtual or template classes to implement the possible alternatives - $summary = cleanup_bbcode($summary); $body = cleanup_bbcode($body); // Look for tags and linkify them - $results = linkify_tags($summary, ($uid) ? $uid : $profile_uid); $results = linkify_tags($body, ($uid) ? $uid : $profile_uid); if($results) { |