diff options
author | Mario <mario@mariovavti.com> | 2021-03-10 11:09:49 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-15 08:50:53 +0000 |
commit | 6cfa2572a8cf9a014002262e383ecef55f1b6a57 (patch) | |
tree | 56e2c21036b9447671b57e1db26add2e61d0fe72 /Zotlabs/Module | |
parent | 04ec986bf77ac5e99d99a756376f933c395fb925 (diff) | |
download | volse-hubzilla-6cfa2572a8cf9a014002262e383ecef55f1b6a57.tar.gz volse-hubzilla-6cfa2572a8cf9a014002262e383ecef55f1b6a57.tar.bz2 volse-hubzilla-6cfa2572a8cf9a014002262e383ecef55f1b6a57.zip |
do not parse bbcode in summary - issue #1532
Diffstat (limited to 'Zotlabs/Module')
-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 f9a13a131..def3f76dd 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -831,12 +831,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) { |