X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=984fd7949cffbe1393d004fa6a7d4ab0a37204f9;hb=67dc08d120828fe277584ba4127340eeb447f8d4;hp=e16b0b5cccbe58126ca678c126aaefeba60ce7f7;hpb=d2280d4120ca09ff5f3013e961a1f43bb5244cc6;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index e16b0b5ccc..984fd7949c 100644 --- a/mod/update_profile.php +++ b/mod/update_profile.php @@ -5,9 +5,13 @@ * Purpose: AJAX synchronisation of profile page */ -require_once("mod/profile.php"); +use Friendica\App; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; -function update_profile_content(App &$a) { +require_once 'mod/profile.php'; + +function update_profile_content(App $a) { $profile_uid = intval($_GET["p"]); @@ -27,12 +31,8 @@ function update_profile_content(App &$a) { $text = profile_content($a, $profile_uid); - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = ""; + if (PConfig::get(local_user(), "system", "bandwidth_saver")) { + $replace = "
".L10n::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";