Add missing return variable while replacing tags in mod/item

This commit is contained in:
Hypolite Petovan 2020-06-10 17:23:07 -04:00
parent 7919860274
commit 7b3581320b
1 changed files with 1 additions and 2 deletions

View File

@ -374,7 +374,7 @@ function item_post(App $a) {
$only_to_forum = false; $only_to_forum = false;
$forum_contact = []; $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); $tags = BBCode::getTags($body);
$tagged = []; $tagged = [];
@ -416,7 +416,6 @@ function item_post(App $a) {
return $body; return $body;
}); });
$original_contact_id = $contact_id; $original_contact_id = $contact_id;
if (!$toplevel_item_id && count($forum_contact) && ($private_forum || $only_to_forum)) { if (!$toplevel_item_id && count($forum_contact) && ($private_forum || $only_to_forum)) {