diff options
author | Friendika <info@friendika.com> | 2011-09-18 19:53:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-18 19:53:45 -0700 |
commit | 5b3f6459392ba6f417cfc5cb0d38094c009c6913 (patch) | |
tree | d98c801e79dc3542cf89769d7b943f1b8292a38b /mod | |
parent | 8bf6a29d4e05af5d461da3f01999785dc12ee7da (diff) | |
download | volse-hubzilla-5b3f6459392ba6f417cfc5cb0d38094c009c6913.tar.gz volse-hubzilla-5b3f6459392ba6f417cfc5cb0d38094c009c6913.tar.bz2 volse-hubzilla-5b3f6459392ba6f417cfc5cb0d38094c009c6913.zip |
account expiration structures
Diffstat (limited to 'mod')
-rw-r--r-- | mod/openid.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/openid.php b/mod/openid.php index 3c3293147..b8734f023 100644 --- a/mod/openid.php +++ b/mod/openid.php @@ -56,7 +56,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 `verified` = 1 LIMIT 1", + FROM `user` WHERE `openid` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1", dbesc($_SESSION['openid']) ); if(! count($r)) { |