X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_network.php;h=869973ace4f07af1b8c2750103849a36f6f85f5d;hb=05dcedb54c8c8f2b48e47fa11cb6dd4586bdd9bb;hp=1c790ead169869401d070baa8f6b2c675f5d2ee2;hpb=06bdf8a4cfe9087573494c0b782a33d1e28ac043;p=friendica.git diff --git a/mod/update_network.php b/mod/update_network.php index 1c790ead16..869973ace4 100644 --- a/mod/update_network.php +++ b/mod/update_network.php @@ -2,24 +2,41 @@ // See update_profile.php for documentation -require_once('mod/network.php'); +require_once("mod/network.php"); +require_once("include/group.php"); +function update_network_content(App $a) { -function update_network_content(&$a) { + $profile_uid = intval($_GET["p"]); header("Content-type: text/html"); echo "\r\n"; - echo (($_GET['msie'] == 1) ? '
' : '
'); - - - $text = network_content($a,true); - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = "' : '
'); + echo "
"; + + if (!get_pconfig($profile_uid, "system", "no_auto_update") OR ($_GET["force"] == 1)) { + $text = network_content($a, $profile_uid); + } 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(); - -} \ No newline at end of file +}