Ensure the parent field isn't set during Item insertion

- Avoid a database error if a null value is provided
This commit is contained in:
Hypolite Petovan 2020-11-12 10:23:50 -05:00
parent c36ca3cffe
commit a9d114316d
1 changed files with 3 additions and 2 deletions

View File

@ -1734,7 +1734,6 @@ class Item
// Update the contact relations
Contact\Relation::store($toplevel_parent['author-id'], $item['author-id'], $item['created']);
unset($item['parent']);
unset($item['parent_origin']);
} else {
$parent_id = 0;
@ -1777,11 +1776,13 @@ class Item
$item['parent'] = $parent_id;
Hook::callAll('post_local', $item);
unset($item['edit']);
unset($item['parent']);
} else {
Hook::callAll('post_remote', $item);
}
// Set after the insert because top-level posts are self-referencing
unset($item['parent']);
if (!empty($item['cancel'])) {
Logger::log('post cancelled by addon.');
return 0;