X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=bc6e511896f5935e137a5f57c32110988eec1a17;hb=895b3abf320a28ecf0f797f4f4900e6baf429308;hp=e16b0b5cccbe58126ca678c126aaefeba60ce7f7;hpb=d2280d4120ca09ff5f3013e961a1f43bb5244cc6;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index e16b0b5ccc..bc6e511896 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"; @@ -47,5 +47,5 @@ function update_profile_content(App &$a) { echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); } \ No newline at end of file