aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-13 20:28:33 -0800
committerFriendika <info@friendika.com>2011-01-13 20:28:33 -0800
commit5bfb0ba4c2ee23366651e1e38d3964098f99f5cf (patch)
tree3d33a24a2be14e043b08ae7cbb8c21de8ddf16da /mod
parent3494b23bfe7a848c8dc41f6680377e16cee0a9d2 (diff)
downloadvolse-hubzilla-5bfb0ba4c2ee23366651e1e38d3964098f99f5cf.tar.gz
volse-hubzilla-5bfb0ba4c2ee23366651e1e38d3964098f99f5cf.tar.bz2
volse-hubzilla-5bfb0ba4c2ee23366651e1e38d3964098f99f5cf.zip
birthday notifications working
Diffstat (limited to 'mod')
-rw-r--r--mod/openid.php5
-rw-r--r--mod/profile.php4
2 files changed, 8 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']));
diff --git a/mod/profile.php b/mod/profile.php
index e8eee810b..9b8388177 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -228,6 +228,10 @@ function profile_content(&$a, $update = 0) {
);
+
+ if($is_owner && ! $update)
+ $o .= get_birthdays();
+
$cmnt_tpl = load_view_file('view/comment_item.tpl');
$like_tpl = load_view_file('view/like.tpl');