X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fupdate_display.php;h=b8538a256bc99ab17eaee30d38c91660d0024358;hb=93fb98959a798cca0eb4709a38508b7e7b6d5b9e;hp=25b0f7792663a6cfdb0748c1503253e281ec7e2d;hpb=21b1e09fad40c846080d8c41d9e7621f0814d3b7;p=friendica.git diff --git a/mod/update_display.php b/mod/update_display.php index 25b0f77926..b8538a256b 100644 --- a/mod/update_display.php +++ b/mod/update_display.php @@ -2,12 +2,14 @@ // See update_profile.php for documentation -require_once('mod/display.php'); -require_once('include/group.php'); +use Friendica\App; -function update_display_content(&$a) { +require_once("mod/display.php"); +require_once("include/group.php"); - $profile_uid = intval($_GET['p']); +function update_display_content(App $a) { + + $profile_uid = intval($_GET["p"]); header("Content-type: text/html"); echo "\r\n"; @@ -19,20 +21,20 @@ function update_display_content(&$a) { $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); + if (get_pconfig(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(); - }