]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_network.php
don't invoke slap if there's no endpoint configured
[friendica.git] / mod / update_network.php
index 1c790ead169869401d070baa8f6b2c675f5d2ee2..35e968dba994a61aaf50ffec1ba37d959d710f24 100644 (file)
@@ -7,12 +7,14 @@ require_once('mod/network.php');
 
 function update_network_content(&$a) {
 
+       $profile_uid = intval($_GET['p']);
+
        header("Content-type: text/html");
        echo "<!DOCTYPE html><html><body>\r\n";
        echo (($_GET['msie'] == 1) ? '<div>' : '<section>');
 
 
-        $text = network_content($a,true);
+        $text = network_content($a,$profile_uid);
         $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
         $replace = "<img\${1} dst=\"\${2}\"";
         $text = preg_replace($pattern, $replace, $text);