3 * @file mod/update_display.php
4 * See update_profile.php for documentation
8 use Friendica\Core\L10n;
9 use Friendica\Core\PConfig;
11 require_once "mod/display.php";
13 function update_display_content(App $a)
15 $profile_uid = intval($_GET["p"]);
17 header("Content-type: text/html");
18 echo "<!DOCTYPE html><html><body>\r\n";
21 $text = display_content($a, true, $profile_uid);
23 if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
24 $replace = "<br />" . L10n::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";