diff options
author | Mario <mario@mariovavti.com> | 2021-06-18 09:51:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-18 09:51:20 +0000 |
commit | c42d8a81c729ff8441195371106e96d398210067 (patch) | |
tree | 3380702c7290832ff785f740e8f7c4f2e4bc9205 /Zotlabs/Widget | |
parent | 0e7473c3ba4e1da24ee4b7c9cc32645364e31a3d (diff) | |
download | volse-hubzilla-c42d8a81c729ff8441195371106e96d398210067.tar.gz volse-hubzilla-c42d8a81c729ff8441195371106e96d398210067.tar.bz2 volse-hubzilla-c42d8a81c729ff8441195371106e96d398210067.zip |
bbcode: add option to drop media content
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Messages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index a03238c9a..95f3d4eb6 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -95,7 +95,7 @@ class Messages { $summary = $item['summary']; } if (!$summary) { - $summary = htmlentities(html2plain(bbcode($item['body']), 75, true), ENT_QUOTES, 'UTF-8', false); + $summary = htmlentities(html2plain(bbcode($item['body'], ['drop_media' => true]), 75, true), ENT_QUOTES, 'UTF-8', false); } if (!$summary) { $summary = '...'; |