Add missing return variable while replacing tags in mod/item
This commit is contained in:
parent
7919860274
commit
7b3581320b
|
@ -374,7 +374,7 @@ function item_post(App $a) {
|
|||
$only_to_forum = false;
|
||||
$forum_contact = [];
|
||||
|
||||
BBCode::performWithEscapedTags($body, ['noparse', 'pre', 'code'], function ($body) use ($profile_uid, $network, $str_contact_allow, &$inform, &$private_forum, &$private_id, &$only_to_forum, &$forum_contact) {
|
||||
$body = BBCode::performWithEscapedTags($body, ['noparse', 'pre', 'code'], function ($body) use ($profile_uid, $network, $str_contact_allow, &$inform, &$private_forum, &$private_id, &$only_to_forum, &$forum_contact) {
|
||||
$tags = BBCode::getTags($body);
|
||||
|
||||
$tagged = [];
|
||||
|
@ -416,7 +416,6 @@ function item_post(App $a) {
|
|||
return $body;
|
||||
});
|
||||
|
||||
|
||||
$original_contact_id = $contact_id;
|
||||
|
||||
if (!$toplevel_item_id && count($forum_contact) && ($private_forum || $only_to_forum)) {
|
||||
|
|
Loading…
Reference in a new issue