X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=e11e290a756f30b9f52821a270e4400e6c617090;hb=8fa791073b5a390e7a903f8f4bc3bd6c30251ca6;hp=3f8e00b296f9583ea4d3db4c3bc9dee7db2679ef;hpb=5998c3995e745d0c2a3b60fab66c5ba9e2b9c27f;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index 3f8e00b296..e11e290a75 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -1,6 +1,6 @@ argv[1]) && (!empty($_GET['force']) || !DI::pConfig()->get(local_user(), 'system', 'no_auto_update'))) { - $text = Contact::getConversationsHMTL($a, $a->argv[1], true, ($_GET['item'] ?? 0)); + if (!empty($_GET['item'])) { + $item = Post::selectFirst(['parent'], ['id' => $_GET['item']]); + $parentid = $item['parent'] ?? 0; + } else { + $parentid = 0; + } + $text = Contact::getConversationsHMTL($a, $a->argv[1], true, $parentid); } else { $text = ''; }