]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
Merge remote-tracking branch 'upstream/develop' into rewrites/coding-convention
[friendica.git] / mod / post.php
index c0e783a6aaded3cb6ea126bfd177eb50cb76e4df..98a32711c62f19b8c296755fd5579d3a04771165 100644 (file)
@@ -9,22 +9,22 @@ require_once('include/salmon.php');
 require_once('include/crypto.php');
 // not yet ready for prime time
 //require_once('include/zot.php');
-       
-function post_post(&$a) {
+
+function post_post(App $a) {
 
        $bulk_delivery = false;
 
-       if($a->argc == 1) {
+       if ($a->argc == 1) {
                $bulk_delivery = true;
-       }
-       else {
+       } else {
                $nickname = $a->argv[2];
-               $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' 
+               $r = q("SELECT * FROM `user` WHERE `nickname` = '%s'
                                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];
        }
@@ -33,15 +33,17 @@ function post_post(&$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);