3 // See update_profile.php for documentation
5 require_once('mod/network.php');
6 require_once('include/group.php');
8 function update_network_content(&$a) {
10 $profile_uid = intval($_GET['p']);
12 header("Content-type: text/html");
13 echo "<!DOCTYPE html><html><body>\r\n";
16 if (!get_pconfig($profile_uid, "system", "no_auto_update") OR ($_GET['force'] == 1))
17 $text = network_content($a,$profile_uid);
21 $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
22 $replace = "<img\${1} dst=\"\${2}\"";
23 $text = preg_replace($pattern, $replace, $text);
25 $replace = '<br />' . t('[Embedded content - reload page to view]') . '<br />';
26 $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
27 $text = preg_replace($pattern, $replace, $text);
28 $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
29 $text = preg_replace($pattern, $replace, $text);
30 $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
31 $text = preg_replace($pattern, $replace, $text);
32 $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
33 $text = preg_replace($pattern, $replace, $text);
36 echo str_replace("\t",' ',$text);
38 echo "</body></html>\r\n";