3 // See update_profile.php for documentation
6 use Friendica\Core\PConfig;
8 require_once "mod/display.php";
10 function update_display_content(App $a)
12 $profile_uid = intval($_GET["p"]);
14 header("Content-type: text/html");
15 echo "<!DOCTYPE html><html><body>\r\n";
18 $text = display_content($a, true, $profile_uid);
19 $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
20 $replace = "<img\${1} dst=\"\${2}\"";
21 $text = preg_replace($pattern, $replace, $text);
23 if (PConfig::get(local_user(), "system", "bandwith_saver")) {
24 $replace = "<br />" . t("[Embedded content - reload page to view]") . "<br />";
25 $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
26 $text = preg_replace($pattern, $replace, $text);
27 $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
28 $text = preg_replace($pattern, $replace, $text);
29 $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
30 $text = preg_replace($pattern, $replace, $text);
31 $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
32 $text = preg_replace($pattern, $replace, $text);
35 echo str_replace("\t", " ", $text);
37 echo "</body></html>\r\n";