X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_network.php;h=aafc0e22f41497fed7cc8ea06f1ef0b26b9516c3;hb=6a23f51549e6b476d494dce4131a24f8ebcdba43;hp=a6c8173794546301ed8af159d42cd9bd37e9a868;hpb=acb4630eed14175ef35f09e21609d6329f3f990c;p=friendica.git diff --git a/mod/update_network.php b/mod/update_network.php index a6c8173794..aafc0e22f4 100644 --- a/mod/update_network.php +++ b/mod/update_network.php @@ -1,45 +1,44 @@ . + * + * See update_profile.php for documentation + */ use Friendica\App; -use Friendica\Core\PConfig; - -require_once("mod/network.php"); -require_once("include/group.php"); +use Friendica\Core\System; +use Friendica\DI; -function update_network_content(App $a) { +require_once "mod/network.php"; - $profile_uid = intval($_GET["p"]); +function update_network_content(App $a) +{ + if (!isset($_GET['p']) || !isset($_GET['item'])) { + exit(); + } - header("Content-type: text/html"); - echo "\r\n"; - echo "
"; + $profile_uid = intval($_GET['p']); + $parent = intval($_GET['item']); - if (!PConfig::get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) { - $text = network_content($a, $profile_uid); + if (!DI::pConfig()->get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) { + $text = network_content($a, $profile_uid, $parent); } else { $text = ""; } - - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = ""; - $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); }