X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_display.php;h=b8538a256bc99ab17eaee30d38c91660d0024358;hb=93fb98959a798cca0eb4709a38508b7e7b6d5b9e;hp=9400cb39a6f02ba01094d6a4f2e5730cca82cbd0;hpb=d6cf791677e3c676108f84e64818ba2a272f6d08;p=friendica.git diff --git a/mod/update_display.php b/mod/update_display.php index 9400cb39a6..b8538a256b 100644 --- a/mod/update_display.php +++ b/mod/update_display.php @@ -2,13 +2,14 @@ // See update_profile.php for documentation -require_once('mod/display.php'); -require_once('include/group.php'); +use Friendica\App; -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 +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(); } -}