]> git.mxchange.org Git - friendica.git/blobdiff - mod/openid.php
forgot to check this in earlier... splits up text and html into two different templat...
[friendica.git] / mod / openid.php
index 94f08c4308de27dbce3de6fdc30a3a300c17a1c0..2e1025692d3a8285eff137a2fc0a7d8589700904 100644 (file)
@@ -6,6 +6,10 @@ require_once('library/openid.php');
 
 function openid_content(&$a) {
 
+       $noid = get_config('system','no_openid');
+       if($noid)
+               goaway($a->get_baseurl());
+
        if((x($_GET,'openid_mode')) && (x($_SESSION,'openid'))) {
                $openid = new LightOpenID;
 
@@ -68,8 +72,11 @@ function openid_content(&$a) {
 
                        notice( t("Welcome back ") . $r[0]['username'] . EOL);
                        $a->user = $r[0];
-                       if(strlen($a->user['timezone']))
+
+                       if(strlen($a->user['timezone'])) {
                                date_default_timezone_set($a->user['timezone']);
+                               $a->timezone = $a->user['timezone'];
+                       }
 
                        $r = q("SELECT * FROM `contact` WHERE `uid` = %s AND `self` = 1 LIMIT 1",
                                intval($_SESSION['uid']));
@@ -79,6 +86,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']);