Merge pull request #4524 from annando/delete-dfrn

When deleting, don't send the parent via DFRN
2022.09-rc
Hypolite Petovan 2018-03-01 15:52:51 -05:00 zatwierdzone przez GitHub
commit b088ef83c5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -242,7 +242,8 @@ class Delivery {
}
if ($normal_mode) {
if ($item_id == $item['id'] || $item['id'] == $item['parent']) {
// Only add the parent when we don't delete other items.
if ($item_id == $item['id'] || (($item['id'] == $item['parent']) && ($cmd != 'drop'))) {
$item["entry:comment-allow"] = true;
$item["entry:cid"] = (($top_level) ? $contact['id'] : 0);
$msgitems[] = $item;