X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=984fd7949cffbe1393d004fa6a7d4ab0a37204f9;hb=c829e4372561660a1b7f365e3210cc7d49124642;hp=5b15f06d30360f9f5211abd1a5be0b89e218870a;hpb=20043914e6111ba53df85e1efd3389c99d37302f;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index 5b15f06d30..984fd7949c 100644 --- a/mod/update_profile.php +++ b/mod/update_profile.php @@ -6,8 +6,10 @@ */ use Friendica\App; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; -require_once("mod/profile.php"); +require_once 'mod/profile.php'; function update_profile_content(App $a) { @@ -29,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";