]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
added curly braces + space between "if" and brace
[friendica.git] / mod / post.php
index 4a7e33b23bd9e77a42838a3482608909b19fca31..076587839d96765577d270403dbfb9e4c7ae96ae 100644 (file)
@@ -10,21 +10,22 @@ 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' 
-                               AND `account_expired` = 0 LIMIT 1",
+                               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];
        }