X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_display.php;h=86f4db8259f83c4db9fdd580666c91da42060c16;hb=221cfa8c22b724228ed24618569cabcae582d331;hp=024e620040107f3f821efb521c7e09f974a9f5d4;hpb=08a30bc1c6c68d81895e0d8c8905680c7d26221f;p=friendica.git diff --git a/mod/update_display.php b/mod/update_display.php index 024e620040..86f4db8259 100644 --- a/mod/update_display.php +++ b/mod/update_display.php @@ -2,37 +2,37 @@ // See update_profile.php for documentation -require_once 'mod/display.php'; -require_once 'include/group.php'; - -function update_display_content(&$a) -{ - $profile_uid = intval($_GET['p']); - - header('Content-type: text/html'); - echo "\r\n"; - echo '
'; - - $text = display_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(); +require_once("mod/display.php"); +require_once("include/group.php"); + +function update_display_content(App $a) { + + $profile_uid = intval($_GET["p"]); + + header("Content-type: text/html"); + echo "\r\n"; + echo "
"; + + + $text = display_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); + } + + echo str_replace("\t", " ", $text); + echo "
"; + echo "\r\n"; + killme(); }