X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_profile.php;h=72056703958ef0306251773c101d52c5371aea5c;hb=174e71cc36a081581b1b2f970b03441353c8c960;hp=1bc29d82cef3f3ad4c11d82f20fe61a08d895ef0;hpb=7886de5c393591eaf4e05f2a496a4f40060cb262;p=friendica.git diff --git a/mod/update_profile.php b/mod/update_profile.php index 1bc29d82ce..7205670395 100644 --- a/mod/update_profile.php +++ b/mod/update_profile.php @@ -5,9 +5,12 @@ * Purpose: AJAX synchronisation of profile page */ -require_once("mod/profile.php"); +use Friendica\App; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; +use Friendica\Module\Profile; -function update_profile_content(&$a) { +function update_profile_content(App $a) { $profile_uid = intval($_GET["p"]); @@ -25,14 +28,10 @@ function update_profile_content(&$a) { * on the client side and then swap the image back. */ - $text = profile_content($a, $profile_uid); + $text = Profile::content($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 +46,5 @@ function update_profile_content(&$a) { echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); } \ No newline at end of file