X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_notes.php;h=71650fe21a04bbabe87a0e7c40790939ab50f4b3;hb=3444c29b0bf56b84d58516991f65cebb03fb627e;hp=7db60e78e077a664eb2a6e328553a3b89f43f43e;hpb=6f9ec690aaa8e8a4ef4a487f2755cf68cee4b052;p=friendica.git diff --git a/mod/update_notes.php b/mod/update_notes.php index 7db60e78e0..71650fe21a 100644 --- a/mod/update_notes.php +++ b/mod/update_notes.php @@ -1,13 +1,28 @@ . + * + * AJAX synchronisation of notes page */ use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; +use Friendica\Core\System; +use Friendica\DI; require_once("mod/notes.php"); @@ -15,11 +30,6 @@ 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, @@ -32,21 +42,5 @@ function update_notes_content(App $a) { $text = notes_content($a, $profile_uid); - if (PConfig::get(local_user(), "system", "bandwidth_saver")) { - $replace = "
".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"; - killme(); -} \ No newline at end of file + System::htmlUpdateExit($text); +}