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