X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=4863ad02ded5b4935c7bac1d631006fea691c775;hb=aedbb0d627606ff7eb7302e2881c31059b6cc1d9;hp=361234fea77820ed8d6192e412e88f0d7c0d076f;hpb=93d50af700e94d3f099559f86c31b406520fc309;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index 361234fea7..4863ad02de 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -1,38 +1,38 @@ . + * + * See update_profile.php for documentation + * + */ use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; +use Friendica\Core\System; +use Friendica\DI; 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($a, true); + if (!empty($_GET['force']) || !DI::pConfig()->get(local_user(), 'system', 'no_auto_update')) { + $text = Contact::content([], true); } else { $text = ''; } - if (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"; - killme(); + System::htmlUpdateExit($text); }