X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_community.php;h=088da0143c5954f849a4bbf62007956d53e59a16;hb=e84c48b979ab265cd29ff3624e975e288c6755fc;hp=037c724891cdb8eb637667faabac28d7d727a7a1;hpb=390d5706f46ce58cbed24b292d5c1f1b9789a8a8;p=friendica.git diff --git a/mod/update_community.php b/mod/update_community.php index 037c724891..088da0143c 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";