X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=75958a41bc87a7208bfdc78708148792e963324d;hb=a5cce36c44c83cb0f42b9a5c760f6e78629d898f;hp=d27cc4ca9672bfcfe1007b2289bfd9bcb14dc71c;hpb=b61479ba6eb66a5d23ff997f204319bf934783e0;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index d27cc4ca96..75958a41bc 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,21 +1,35 @@ . + * + * 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"]); - header("Content-type: text/html"); - echo "\r\n"; - - echo "
"; - /** * * Grab the page inner contents by calling the content function from the profile module directly, @@ -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(); + System::htmlUpdateExit($text); } \ No newline at end of file