X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fpost.php;h=bfdc62ab7942706b84485281c98aaef8986a3eb7;hb=10ede7314136edb1c475e1af546a59ff4c5648cf;hp=98a32711c62f19b8c296755fd5579d3a04771165;hpb=5a6da8b447430174ae231a3b8203fd4bd8416cc1;p=friendica.git diff --git a/mod/post.php b/mod/post.php index 98a32711c6..bfdc62ab79 100644 --- a/mod/post.php +++ b/mod/post.php @@ -4,6 +4,7 @@ * Zot endpoint */ +use Friendica\App; require_once('include/salmon.php'); require_once('include/crypto.php'); @@ -16,7 +17,8 @@ function post_post(App $a) { if ($a->argc == 1) { $bulk_delivery = true; - } else { + } + else { $nickname = $a->argv[2]; $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", @@ -33,17 +35,15 @@ function post_post(App $a) { logger('mod-post: new zot: ' . $xml, LOGGER_DATA); - if (! $xml) { + if(! $xml) http_status_exit(500); - } $msg = zot_decode($importer,$xml); logger('mod-post: decoded msg: ' . print_r($msg,true), LOGGER_DATA); - if (! is_array($msg)) { + if(! is_array($msg)) http_status_exit(500); - } $ret = 0; $ret = zot_incoming($bulk_delivery, $importer,$msg);