X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=87822f513ed51587f1979668b348e8565162c862;hb=8293d5ed0af78ae6cc5629bb1f982a7b29794d32;hp=e369261128444cc2a3f221639f433221825228ad;hpb=6b44fbbda03af125035c185c964f10ce78f97610;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index e369261128..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,12 +46,8 @@ function update_notes_content(App $a) { $text = notes_content($a, $profile_uid); - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = ""; + 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"; @@ -52,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