X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=e11e290a756f30b9f52821a270e4400e6c617090;hb=8fa791073b5a390e7a903f8f4bc3bd6c30251ca6;hp=4863ad02ded5b4935c7bac1d631006fea691c775;hpb=b0690077aa30e9a48ca22c3aa29c82cfac7b698e;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index 4863ad02de..e11e290a75 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -1,6 +1,6 @@ get(local_user(), 'system', 'no_auto_update')) { - $text = Contact::content([], true); + if (!empty($a->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); }