X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fupdate_notes.php;h=e369261128444cc2a3f221639f433221825228ad;hb=cfb00d811df2a5b41c096e16aab45d2d4ee1dabd;hp=d27cc4ca9672bfcfe1007b2289bfd9bcb14dc71c;hpb=dbf7c7d9ad697f7951f102c8372e7d65c167de96;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index d27cc4ca96..e369261128 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -5,6 +5,10 @@ * Purpose: AJAX synchronisation of notes page */ +use Friendica\App; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; + require_once("mod/notes.php"); function update_notes_content(App $a) { @@ -32,8 +36,8 @@ function update_notes_content(App $a) { $replace = ""; + if (PConfig::get(local_user(), "system", "bandwith_saver")) { + $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";