X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fupdate_network.php;h=6ba761d04acf861382fc9714688fdbb83ce5fd67;hb=ac9b3b78457f466980c7300cea602d78e7af8d45;hp=6c02e4a8fabf98ad212b5e6153f8cabead1f4136;hpb=7d1bb9ecf482874155695488ba54021ce0200f5c;p=friendica.git diff --git a/mod/update_network.php b/mod/update_network.php index 6c02e4a8fa..6ba761d04a 100644 --- a/mod/update_network.php +++ b/mod/update_network.php @@ -12,6 +12,10 @@ require_once "mod/network.php"; function update_network_content(App $a) { + if (!isset($_GET['p']) || !isset($_GET['item'])) { + exit(); + } + $profile_uid = intval($_GET['p']); $parent = intval($_GET['item']); @@ -40,5 +44,5 @@ function update_network_content(App $a) echo str_replace("\t", " ", $text); echo ""; echo "\r\n"; - killme(); + exit(); }