]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
Merge pull request #3110 from tobiasd/20170127-translationdocs
[friendica.git] / mod / post.php
index 631bf0eba63f5d058e813fdd5306730dd021f111..c8a88e66cd329c5bd853084f638a33a52e29e1fb 100644 (file)
@@ -10,12 +10,11 @@ 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 +23,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 +49,4 @@ function post_post(&$a) {
        http_status_exit(($ret) ? $ret : 200);
        // NOTREACHED
 }
-}
+