missing salmon key? report it.

This commit is contained in:
Friendika 2011-08-24 20:40:08 -07:00
commit 8f6ae2b660
4 changed files with 16 additions and 5 deletions

View file

@ -55,7 +55,8 @@ function openid_content(&$a) {
}
$r = q("SELECT * FROM `user` WHERE `openid` = '%s' AND `blocked` = 0 AND `verified` = 1 LIMIT 1",
$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",
dbesc($_SESSION['openid'])
);
if(! count($r)) {