2010-07-24 18:21:33 -04:00
|
|
|
<?php
|
|
|
|
|
2010-08-10 19:54:36 -04:00
|
|
|
// See update_profile.php for documentation
|
2010-07-24 18:21:33 -04:00
|
|
|
|
|
|
|
require_once('mod/network.php');
|
|
|
|
|
|
|
|
|
|
|
|
function update_network_content(&$a) {
|
|
|
|
|
2010-09-20 22:34:44 -04:00
|
|
|
$profile_uid = intval($_GET['p']);
|
|
|
|
|
2010-07-25 02:20:20 -04:00
|
|
|
header("Content-type: text/html");
|
|
|
|
echo "<!DOCTYPE html><html><body>\r\n";
|
|
|
|
echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
|
2010-08-10 19:54:36 -04:00
|
|
|
|
|
|
|
|
2010-09-20 22:34:44 -04:00
|
|
|
$text = network_content($a,$profile_uid);
|
2010-08-10 19:54:36 -04:00
|
|
|
$pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
|
|
|
|
$replace = "<img\${1} dst=\"\${2}\"";
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
|
|
|
|
echo str_replace("\t",' ',$text);
|
2010-07-25 02:20:20 -04:00
|
|
|
echo (($_GET['msie'] == 1) ? '</div>' : '</section>');
|
|
|
|
echo "</body></html>\r\n";
|
2010-07-24 18:21:33 -04:00
|
|
|
killme();
|
|
|
|
|
|
|
|
}
|