2010-07-24 15:21:33 -07:00
|
|
|
<?php
|
|
|
|
|
2010-08-10 16:54:36 -07:00
|
|
|
// See update_profile.php for documentation
|
2010-07-24 15:21:33 -07:00
|
|
|
|
|
|
|
require_once('mod/network.php');
|
2011-02-17 00:52:26 -08:00
|
|
|
require_once('include/group.php');
|
2010-07-24 15:21:33 -07:00
|
|
|
|
|
|
|
function update_network_content(&$a) {
|
|
|
|
|
2010-09-20 19:34:44 -07:00
|
|
|
$profile_uid = intval($_GET['p']);
|
|
|
|
|
2010-07-24 23:20:20 -07:00
|
|
|
header("Content-type: text/html");
|
|
|
|
echo "<!DOCTYPE html><html><body>\r\n";
|
2014-09-06 16:21:03 +02:00
|
|
|
echo "<section>";
|
2010-08-10 16:54:36 -07:00
|
|
|
|
2014-08-02 00:35:25 +02:00
|
|
|
if (!get_pconfig($profile_uid, "system", "no_auto_update") OR ($_GET['force'] == 1))
|
2014-07-09 21:32:32 +02:00
|
|
|
$text = network_content($a,$profile_uid);
|
2014-08-02 00:35:25 +02:00
|
|
|
else
|
2014-07-09 21:32:32 +02:00
|
|
|
$text = "";
|
2010-08-10 16:54:36 -07:00
|
|
|
|
2012-11-01 18:31:50 -06:00
|
|
|
$pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
|
|
|
|
$replace = "<img\${1} dst=\"\${2}\"";
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
|
|
|
|
$replace = '<br />' . t('[Embedded content - reload page to view]') . '<br />';
|
|
|
|
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
$pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
$pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
$pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
|
|
|
|
$text = preg_replace($pattern, $replace, $text);
|
|
|
|
|
|
|
|
|
|
|
|
echo str_replace("\t",' ',$text);
|
2014-09-06 16:21:03 +02:00
|
|
|
echo "</section>";
|
2010-07-24 23:20:20 -07:00
|
|
|
echo "</body></html>\r\n";
|
2010-07-24 15:21:33 -07:00
|
|
|
killme();
|
|
|
|
|
2012-11-01 18:31:50 -06:00
|
|
|
}
|