2010-07-25 00:21:33 +02:00
|
|
|
<?php
|
|
|
|
|
2010-08-11 01:54:36 +02:00
|
|
|
// See update_profile.php for documentation
|
2010-07-25 00:21:33 +02:00
|
|
|
|
|
|
|
require_once('mod/network.php');
|
2011-02-17 09:52:26 +01:00
|
|
|
require_once('include/group.php');
|
2010-07-25 00:21:33 +02:00
|
|
|
|
|
|
|
function update_network_content(&$a) {
|
|
|
|
|
2010-09-21 04:34:44 +02:00
|
|
|
$profile_uid = intval($_GET['p']);
|
|
|
|
|
2010-07-25 08:20:20 +02: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-11 01:54:36 +02: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-11 01:54:36 +02:00
|
|
|
|
2012-11-02 01:31:50 +01: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-25 08:20:20 +02:00
|
|
|
echo "</body></html>\r\n";
|
2010-07-25 00:21:33 +02:00
|
|
|
killme();
|
|
|
|
|
2012-11-02 01:31:50 +01:00
|
|
|
}
|