X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=4065b5d1f8cfd12c376f22780162420b72450bb8;hb=7072e213444a8a23da83b16cfeba37c807a54674;hp=1769fac7695792871fbafc7d95805eed9f951367;hpb=9e9429b56d85626259e89d6373e59f9307be9c78;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 1769fac769..4065b5d1f8 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -6,8 +6,6 @@ */ use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; use Friendica\DI; require_once("mod/notes.php"); @@ -34,7 +32,7 @@ function update_notes_content(App $a) { $text = notes_content($a, $profile_uid); if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) { - $replace = "
".L10n::t("[Embedded content - reload page to view]")."
"; + $replace = "
" . DI::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";