X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=e11e290a756f30b9f52821a270e4400e6c617090;hb=8fa791073b5a390e7a903f8f4bc3bd6c30251ca6;hp=5fb62e6a077de2ce919273c423f75a3c004698c1;hpb=da124af6edfd788877307decc187fe7f0ff2b4c7;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index 5fb62e6a07..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'))) { + 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 = ''; } - System::htmlUpdateExit($text); }