X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=f195b536272d8735cb5d6ee193900777e06d9b3b;hb=f826ce70ceb9f810a16b70d3d77b9ba2c8d9097d;hp=9fc886155159b318355ed8e780fbf4a613d080a8;hpb=1c38540f20b3207a0fd09ef0802125e45e83bcf6;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 9fc8861551..f195b53627 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,22 +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']); /** * @@ -30,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); +}