X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=10f60c1ef17472b2ad42c01cc3578d8931e9aef1;hb=a876c208504af3ee801689886ec8cab8f3eeff00;hp=9fc886155159b318355ed8e780fbf4a613d080a8;hpb=1f58bcc114928a5a3cd97bd0de34a5aa7d585931;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 9fc8861551..10f60c1ef1 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -6,6 +6,8 @@ */ use Friendica\App; +use Friendica\Core\L10n; +use Friendica\Core\PConfig; require_once("mod/notes.php"); @@ -30,12 +32,8 @@ function update_notes_content(App $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"; @@ -50,5 +48,5 @@ function update_notes_content(App $a) { echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); } \ No newline at end of file