X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=f650fbb1d969b4e14a60a0b60a104889eff12c20;hb=1fdd0f915250517e254adb5165b394f03721cd87;hp=4065b5d1f8cfd12c376f22780162420b72450bb8;hpb=1bc4b2e0788ac11d3b377013b410f2250fff68aa;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 4065b5d1f8..f650fbb1d9 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,23 +1,34 @@ . + * + * AJAX synchronisation of notes page */ use Friendica\App; +use Friendica\Core\System; use Friendica\DI; -require_once("mod/notes.php"); - -function update_notes_content(App $a) { - - $profile_uid = intval($_GET["p"]); +require_once 'mod/notes.php'; - header("Content-type: text/html"); - echo "\r\n"; - - echo "
"; +function update_notes_content(App $a) +{ + $profile_uid = intval($_GET['p']); /** * @@ -31,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); +}