X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_community.php;h=d5f2b4cb21d18f87c723788be13069fc3eb7879d;hb=bc848526829c9808868bb8520f8e3510b1a0000e;hp=037c724891cdb8eb637667faabac28d7d727a7a1;hpb=390d5706f46ce58cbed24b292d5c1f1b9789a8a8;p=friendica.git diff --git a/mod/update_community.php b/mod/update_community.php index 037c724891..d5f2b4cb21 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"); @@ -23,7 +24,7 @@ function update_community_content(App $a) { $text = preg_replace($pattern, $replace, $text); if (PConfig::get(local_user(), "system", "bandwith_saver")) { - $replace = "
".t("[Embedded content - reload page to view]")."
"; + $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";