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