diff options
author | Mario <mario@mariovavti.com> | 2023-02-17 10:18:01 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-02-17 10:18:01 +0000 |
commit | ee8fc701a61996bc5d93bbac942c0804e2c35950 (patch) | |
tree | 06694e25e89bcbcaa4cbdc6b7dea9116a4c3ee78 /Zotlabs/Module | |
parent | 62a363debccd7027a02b520614a53e523df15d1b (diff) | |
download | volse-hubzilla-ee8fc701a61996bc5d93bbac942c0804e2c35950.tar.gz volse-hubzilla-ee8fc701a61996bc5d93bbac942c0804e2c35950.tar.bz2 volse-hubzilla-ee8fc701a61996bc5d93bbac942c0804e2c35950.zip |
do not try to oembed in notes
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Notes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Notes.php b/Zotlabs/Module/Notes.php index 57b8f30db..2fd719f25 100644 --- a/Zotlabs/Module/Notes.php +++ b/Zotlabs/Module/Notes.php @@ -39,7 +39,7 @@ class Notes extends Controller { } set_pconfig(local_channel(),'notes','text',$body); - $ret['html'] = bbcode($body); + $ret['html'] = bbcode($body, ['tryoembed' => false]); $ret['success'] = true; } |