X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=7db60e78e077a664eb2a6e328553a3b89f43f43e;hb=4b0cf8d60f05c44f72b39bae1caae63284aacf44;hp=ee9d1d71f56a7f25fabb46e8e7ad51d3977975c4;hpb=126c4774c330d9c9c9038312198c57fb653682df;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index ee9d1d71f5..7db60e78e0 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -5,9 +5,13 @@ * 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(&$a) { +function update_notes_content(App $a) { $profile_uid = intval($_GET["p"]); @@ -28,12 +32,8 @@ function update_notes_content(&$a) { $text = notes_content($a, $profile_uid); - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = ""; + if (PConfig::get(local_user(), "system", "bandwidth_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";