X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=4d1f158b39dd9f12871e1e8c5546a286cfc65601;hb=232d1009e56744d064908b1c1803153d211efdad;hp=1bc29d82cef3f3ad4c11d82f20fe61a08d895ef0;hpb=7886de5c393591eaf4e05f2a496a4f40060cb262;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index 1bc29d82ce..4d1f158b39 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"]); @@ -31,8 +35,8 @@ function update_profile_content(&$a) { $replace = ""; + if (PConfig::get(local_user(), "system", "bandwith_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";