X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=75958a41bc87a7208bfdc78708148792e963324d;hb=0c3a5c815e7067aa587ac8f0bb8e32bb5892082e;hp=e1e4f1d79550ef7496a01ff63dd38e9aabcd7724;hpb=9330a6994c1b9aee49a482efe32e84ca1a944c9b;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index e1e4f1d795..75958a41bc 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'); - -if(! function_exists('update_notes_content')) { -function update_notes_content(&$a) { +require_once("mod/notes.php"); - $profile_uid = intval($_GET['p']); +function update_notes_content(App $a) { - header("Content-type: text/html"); - echo "\r\n"; - - echo "
"; + $profile_uid = intval($_GET["p"]); /** * @@ -29,29 +40,7 @@ function update_notes_content(&$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 - */ + $text = notes_content($a, $profile_uid); - echo str_replace("\t",' ',$text); - echo "
"; - echo "\r\n"; - killme(); -} -} + System::htmlUpdateExit($text); +} \ No newline at end of file