X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=e11e290a756f30b9f52821a270e4400e6c617090;hb=8fa791073b5a390e7a903f8f4bc3bd6c30251ca6;hp=5092dd835cb96ff3f1bd3b455f2ba622a017f33e;hpb=8536b313a1eb1c3e11f9ba5317fdcef33118bcb8;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index 5092dd835c..e11e290a75 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -1,38 +1,44 @@ . + * + * See update_profile.php for documentation + * + */ use Friendica\App; -use Friendica\Core\L10n; +use Friendica\Core\System; use Friendica\DI; +use Friendica\Model\Post; use Friendica\Module\Contact; function update_contact_content(App $a) { - header("Content-type: text/html"); - echo "\r\n"; - echo "
"; - - if ($_GET["force"] == 1) { - $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 = ''; } - - if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) { - $replace = "
".L10n::t("[Embedded content - reload page to view]")."
"; - $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i"; - $text = preg_replace($pattern, $replace, $text); - } - - echo str_replace("\t", " ", $text); - echo "
"; - echo "\r\n"; - exit(); + System::htmlUpdateExit($text); }