X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=984fd7949cffbe1393d004fa6a7d4ab0a37204f9;hb=5c63de1692c5be4ca457e03fc037683909a44348;hp=1bc29d82cef3f3ad4c11d82f20fe61a08d895ef0;hpb=4996003800fa06e99d3ea85b17e57e760be75742;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index 1bc29d82ce..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(&$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(&$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";