X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fupdate_network.php;h=88b6fa2ee3b83e38a33f805d710ad0150d7d803a;hb=e0b33b36a21d7803353692372d7ceb90683d8888;hp=fddbeba397e30db851ef3c251744f9f4835368b7;hpb=30c1cc0e8cec5438fd8fe36bd4ea00991dc01934;p=friendica.git diff --git a/mod/update_network.php b/mod/update_network.php index fddbeba397..88b6fa2ee3 100644 --- a/mod/update_network.php +++ b/mod/update_network.php @@ -12,14 +12,15 @@ require_once "mod/network.php"; function update_network_content(App $a) { - $profile_uid = intval($_GET["p"]); + $profile_uid = intval($_GET['p']); + $parent = intval($_GET['item']); header("Content-type: text/html"); echo "\r\n"; echo "
"; if (!PConfig::get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) { - $text = network_content($a, $profile_uid); + $text = network_content($a, $profile_uid, $parent); } else { $text = ""; }