X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=f650fbb1d969b4e14a60a0b60a104889eff12c20;hb=1fdd0f915250517e254adb5165b394f03721cd87;hp=d27cc4ca9672bfcfe1007b2289bfd9bcb14dc71c;hpb=8e12b159d947fb27ad6bdd5e06e3a90c1713687e;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index d27cc4ca96..f650fbb1d9 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,20 +1,34 @@ . + * + * AJAX synchronisation of notes page */ -require_once("mod/notes.php"); - -function update_notes_content(App $a) { - - $profile_uid = intval($_GET["p"]); +use Friendica\App; +use Friendica\Core\System; +use Friendica\DI; - header("Content-type: text/html"); - echo "\r\n"; +require_once 'mod/notes.php'; - echo "
"; +function update_notes_content(App $a) +{ + $profile_uid = intval($_GET['p']); /** * @@ -28,25 +42,5 @@ function update_notes_content(App $a) { $text = notes_content($a, $profile_uid); - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = ""; - $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"; - killme(); -} \ No newline at end of file + System::htmlUpdateExit($text); +}