]> git.mxchange.org Git - friendica.git/blobdiff - mod/openid.php
Merge pull request #2190 from annando/1512-getload
[friendica.git] / mod / openid.php
old mode 100755 (executable)
new mode 100644 (file)
index e2cea7d..5d5539f
@@ -27,7 +27,7 @@ function openid_content(&$a) {
 
                        $r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey` 
                                FROM `user` WHERE `openid` = '%s' AND `blocked` = 0 
-                               AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
+                               AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
                                dbesc($authid)
                        );