X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=f650fbb1d969b4e14a60a0b60a104889eff12c20;hb=5107d4418e564791e95a59c3660aca2bbef8d132;hp=87822f513ed51587f1979668b348e8565162c862;hpb=2ec3a97393959e42d450e074271d2d622d25701f;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 87822f513e..f650fbb1d9 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,6 +1,6 @@ \r\n"; - - echo "
"; +function update_notes_content(App $a) +{ + $profile_uid = intval($_GET['p']); /** * @@ -46,21 +42,5 @@ function update_notes_content(App $a) { $text = notes_content($a, $profile_uid); - 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"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i"; - $text = preg_replace($pattern, $replace, $text); - } - - // reportedly some versions of MSIE don't handle tabs in XMLHttpRequest documents very well - echo str_replace("\t", " ", $text); - echo "
"; - echo "\r\n"; - exit(); -} \ No newline at end of file + System::htmlUpdateExit($text); +}