aboutsummaryrefslogtreecommitdiffstats
path: root/mod/openid.php
diff options
context:
space:
mode:
authorroot <root@diekershoff.homeunix.net>2011-01-14 07:15:57 +0100
committerroot <root@diekershoff.homeunix.net>2011-01-14 07:15:57 +0100
commit30551b24ec833ef58e98071e56cb3bb94f302dd3 (patch)
tree3d33a24a2be14e043b08ae7cbb8c21de8ddf16da /mod/openid.php
parentc472799b8dd607946c0bf787240ba4df7fd28e93 (diff)
parent5bfb0ba4c2ee23366651e1e38d3964098f99f5cf (diff)
downloadvolse-hubzilla-30551b24ec833ef58e98071e56cb3bb94f302dd3.tar.gz
volse-hubzilla-30551b24ec833ef58e98071e56cb3bb94f302dd3.tar.bz2
volse-hubzilla-30551b24ec833ef58e98071e56cb3bb94f302dd3.zip
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/openid.php')
-rw-r--r--mod/openid.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/openid.php b/mod/openid.php
index 91efbbbc4..2e1025692 100644
--- a/mod/openid.php
+++ b/mod/openid.php
@@ -72,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']));