X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_display.php;h=9dd3edf282d1f12413a980a235195839e2797afd;hb=f22fe7118d52251dbd0898279ef078b797885ec4;hp=9400cb39a6f02ba01094d6a4f2e5730cca82cbd0;hpb=db949bb802448184bfe5164d8d3dd86ddf51b187;p=friendica.git diff --git a/mod/update_display.php b/mod/update_display.php index 9400cb39a6..9dd3edf282 100644 --- a/mod/update_display.php +++ b/mod/update_display.php @@ -2,13 +2,15 @@ // See update_profile.php for documentation -require_once('mod/display.php'); -require_once('include/group.php'); +use Friendica\App; +use Friendica\Core\PConfig; -if(! function_exists('update_display_content')) { -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"; @@ -20,20 +22,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 (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(); } -}