X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=4065b5d1f8cfd12c376f22780162420b72450bb8;hb=9435cc4b88de611407bf992f571e12e8f54b3c51;hp=d27cc4ca9672bfcfe1007b2289bfd9bcb14dc71c;hpb=b61479ba6eb66a5d23ff997f204319bf934783e0;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index d27cc4ca96..4065b5d1f8 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -5,6 +5,9 @@ * Purpose: AJAX synchronisation of notes page */ +use Friendica\App; +use Friendica\DI; + require_once("mod/notes.php"); function update_notes_content(App $a) { @@ -28,12 +31,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"; @@ -48,5 +47,5 @@ function update_notes_content(App $a) { echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); } \ No newline at end of file