X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=9681e7c17979f977a32904ec267a660e17e5df83;hb=7ab63d210657494070b6d5c5728a998df12e1f00;hp=4863ad02ded5b4935c7bac1d631006fea691c775;hpb=cdc39b0f729bc7613a02af472a639366ec72d7aa;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index 4863ad02de..9681e7c179 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -24,15 +24,21 @@ use Friendica\App; use Friendica\Core\System; use Friendica\DI; +use Friendica\Model\Item; use Friendica\Module\Contact; function update_contact_content(App $a) { - if (!empty($_GET['force']) || !DI::pConfig()->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 = Item::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); }