]> git.mxchange.org Git - friendica.git/blobdiff - mod/openid.php
Merge pull request #2190 from annando/1512-getload
[friendica.git] / mod / openid.php
index e2cea7d851041211610748b3483a1fcd29193ba9..5d5539f00eb4e696429903179c1ae1b8022136d7 100644 (file)
@@ -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)
                        );