aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-01 20:18:47 -0800
committerFriendika <info@friendika.com>2011-03-01 20:18:47 -0800
commit377f991ac5b1e8c3c679fbbc5e138256bc24715b (patch)
tree7194d35eec60763cf754ed82d36aaf9737e13862 /mod
parent5ff1462e1e98e97f623022c23deea0147c62327b (diff)
downloadvolse-hubzilla-377f991ac5b1e8c3c679fbbc5e138256bc24715b.tar.gz
volse-hubzilla-377f991ac5b1e8c3c679fbbc5e138256bc24715b.tar.bz2
volse-hubzilla-377f991ac5b1e8c3c679fbbc5e138256bc24715b.zip
switch identities to manage pages
Diffstat (limited to 'mod')
-rw-r--r--mod/openid.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/mod/openid.php b/mod/openid.php
index 2e1025692..6ccd28e5b 100644
--- a/mod/openid.php
+++ b/mod/openid.php
@@ -78,8 +78,16 @@ function openid_content(&$a) {
$a->timezone = $a->user['timezone'];
}
- $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
- intval($_SESSION['uid']));
+ $r = q("SELECT `uid`,`username` FROM `user` WHERE `password` = '%s' AND `email` = '%s'",
+ dbesc($a->user['password']),
+ dbesc($a->user['email'])
+ );
+ if(count($r))
+ $a->identities = $r;
+
+ $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
+ intval($_SESSION['uid'])
+ );
if(count($r)) {
$a->contact = $r[0];
$a->cid = $r[0]['id'];