]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
get_basepath() uses a lot $this (which means object-referenced calls, or
[friendica.git] / mod / post.php
old mode 100755 (executable)
new mode 100644 (file)
index 4a7e33b..76282d2
@@ -20,10 +20,10 @@ function post_post(&$a) {
        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];