X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_network.php;h=a6c8173794546301ed8af159d42cd9bd37e9a868;hb=de4a2e6fd03cd0aab94a256eba92ed593931534b;hp=9c6e45ca418a424a4cc17bbdf14d97045ea009d2;hpb=cf0ebd952f662654f5e1291845fa82b1047155d4;p=friendica.git diff --git a/mod/update_network.php b/mod/update_network.php index 9c6e45ca41..a6c8173794 100644 --- a/mod/update_network.php +++ b/mod/update_network.php @@ -2,40 +2,44 @@ // See update_profile.php for documentation -require_once('mod/network.php'); -require_once('include/group.php'); +use Friendica\App; +use Friendica\Core\PConfig; -function update_network_content(&$a) { +require_once("mod/network.php"); +require_once("include/group.php"); - $profile_uid = intval($_GET['p']); +function update_network_content(App $a) { + + $profile_uid = intval($_GET["p"]); header("Content-type: text/html"); echo "\r\n"; - echo (($_GET['msie'] == 1) ? '
' : '
'); + echo "
"; - if (!get_pconfig($profile_uid, "system", "no_auto_update") OR ($_GET['force'] == 1)) - $text = network_content($a,$profile_uid); - else + if (!PConfig::get($profile_uid, "system", "no_auto_update") || ($_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 (($_GET['msie'] == 1) ? '
' : ''); + if (PConfig::get(local_user(), "system", "bandwith_saver")) { + $replace = "
".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(); - }