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";
14 echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
17 $text = network_content($a,$profile_uid);
18 $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
19 $replace = "<img\${1} dst=\"\${2}\"";
20 $text = preg_replace($pattern, $replace, $text);
22 echo str_replace("\t",' ',$text);
23 echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
24 echo "</body></html>\r\n";