X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=984fd7949cffbe1393d004fa6a7d4ab0a37204f9;hb=61664ee6595ad0a9158b2c3171dbc522066e2dec;hp=b77a9cdcfc5e4d40755c38bb22172364f9cdb7fb;hpb=63e2695d226d195c6a97e1045d6b174591dd2487;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index b77a9cdcfc..984fd7949c 100644 --- a/mod/update_profile.php +++ b/mod/update_profile.php @@ -5,7 +5,11 @@ * Purpose: AJAX synchronisation of profile page */ -require_once("mod/profile.php"); +use Friendica\App; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; + +require_once 'mod/profile.php'; function update_profile_content(App $a) { @@ -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";