X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_community.php;h=e15520320ea85944353a5c1647f761bcefb2ac14;hb=ed2bb213607e042c5ddf21325efc408b112a665e;hp=037c724891cdb8eb637667faabac28d7d727a7a1;hpb=04589ecd38d85df339a3fed320d2822520b686f2;p=friendica.git diff --git a/mod/update_community.php b/mod/update_community.php index 037c724891..e15520320e 100644 --- a/mod/update_community.php +++ b/mod/update_community.php @@ -3,9 +3,10 @@ // See update_profile.php for documentation use Friendica\App; +use Friendica\Core\L10n; use Friendica\Core\PConfig; -require_once("mod/community.php"); +require_once 'mod/community.php'; function update_community_content(App $a) { header("Content-type: text/html"); @@ -18,12 +19,8 @@ function update_community_content(App $a) { $text = ''; } - $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"; @@ -37,5 +34,5 @@ function update_community_content(App $a) { echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); }