X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fpost.php;h=bfdc62ab7942706b84485281c98aaef8986a3eb7;hb=e5429b2d174a2410a06079f13de24ece013733b9;hp=631bf0eba63f5d058e813fdd5306730dd021f111;hpb=d6cf791677e3c676108f84e64818ba2a272f6d08;p=friendica.git diff --git a/mod/post.php b/mod/post.php index 631bf0eba6..bfdc62ab79 100644 --- a/mod/post.php +++ b/mod/post.php @@ -4,18 +4,18 @@ * Zot endpoint */ +use Friendica\App; require_once('include/salmon.php'); require_once('include/crypto.php'); // not yet ready for prime time //require_once('include/zot.php'); -if(! function_exists('post_post')) { -function post_post(&$a) { +function post_post(App $a) { $bulk_delivery = false; - if($a->argc == 1) { + if ($a->argc == 1) { $bulk_delivery = true; } else { @@ -24,8 +24,9 @@ function post_post(&$a) { AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", dbesc($nickname) ); - if(! count($r)) + if (! dbm::is_result($r)) { http_status_exit(500); + } $importer = $r[0]; } @@ -49,4 +50,4 @@ function post_post(&$a) { http_status_exit(($ret) ? $ret : 200); // NOTREACHED } -} +