X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=87822f513ed51587f1979668b348e8565162c862;hb=8293d5ed0af78ae6cc5629bb1f982a7b29794d32;hp=7db60e78e077a664eb2a6e328553a3b89f43f43e;hpb=78114c13d5ce27b36682a960859056d4ebf9d9be;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 7db60e78e0..87822f513e 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,13 +1,27 @@ . + * + * AJAX synchronisation of notes page */ use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; +use Friendica\DI; require_once("mod/notes.php"); @@ -32,8 +46,8 @@ function update_notes_content(App $a) { $text = notes_content($a, $profile_uid); - if (PConfig::get(local_user(), "system", "bandwidth_saver")) { - $replace = "
".L10n::t("[Embedded content - reload page to view]")."
"; + if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) { + $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"; @@ -48,5 +62,5 @@ function update_notes_content(App $a) { echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); } \ No newline at end of file