]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
Merge pull request #3518 from AndyHee/3.5.2rc
[friendica.git] / mod / post.php
index 76282d29a5390bf706d59957dc9e40769f7830cb..bfdc62ab7942706b84485281c98aaef8986a3eb7 100644 (file)
@@ -4,27 +4,29 @@
  * 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');
-       
-function post_post(&$a) {
+
+function post_post(App $a) {
 
        $bulk_delivery = false;
 
-       if($a->argc == 1) {
+       if ($a->argc == 1) {
                $bulk_delivery = true;
        }
        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(! dbm::is_result($r))
+               if (! dbm::is_result($r)) {
                        http_status_exit(500);
+               }
 
                $importer = $r[0];
        }