diff options
author | Friendika <info@friendika.com> | 2010-12-16 16:35:45 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-16 16:35:45 -0800 |
commit | f60f82727f96c033aaff9f5b5f0767c722e25f28 (patch) | |
tree | 9ad52de5515064ac7b8ad12b7c07a408803b4784 /mod/openid.php | |
parent | df2e79dcaf28810e31d4bdc48bdb76e12f70e817 (diff) | |
download | volse-hubzilla-f60f82727f96c033aaff9f5b5f0767c722e25f28.tar.gz volse-hubzilla-f60f82727f96c033aaff9f5b5f0767c722e25f28.tar.bz2 volse-hubzilla-f60f82727f96c033aaff9f5b5f0767c722e25f28.zip |
register/login timestamps
Diffstat (limited to 'mod/openid.php')
-rw-r--r-- | mod/openid.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/openid.php b/mod/openid.php index 84d4bf4bf..91efbbbc4 100644 --- a/mod/openid.php +++ b/mod/openid.php @@ -83,6 +83,11 @@ function openid_content(&$a) { $_SESSION['cid'] = $a->cid; } + q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d LIMIT 1", + dbesc(datetime_convert()), + intval($_SESSION['uid']) + ); + header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"'); if(($a->module !== 'home') && isset($_SESSION['return_url'])) goaway($a->get_baseurl() . '/' . $_SESSION['return_url']); |