diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-05-26 18:05:11 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-05-26 18:05:11 +0200 |
commit | e466d72058b2543bec69c77d2730828acada38a1 (patch) | |
tree | aeb1a73e02c3d28409e96eb0591a7e28846b5539 /Zotlabs/Lib | |
parent | 528b9b6a60d847b0ecb639cb7fb8e01ee79b11d4 (diff) | |
download | volse-hubzilla-e466d72058b2543bec69c77d2730828acada38a1.tar.gz volse-hubzilla-e466d72058b2543bec69c77d2730828acada38a1.tar.bz2 volse-hubzilla-e466d72058b2543bec69c77d2730828acada38a1.zip |
adjust birthday handling according to community decision and slightly change display of allday event items
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 9bf987027..976ed22fa 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2766,7 +2766,7 @@ class Libzot { $profile['description'] = $p[0]['pdesc']; $profile['birthday'] = $p[0]['dob']; - if(($profile['birthday'] != '0000-00-00') && (($bd = z_birthday($p[0]['dob'],$e['channel_timezone'])) !== '')) + if(($profile['birthday'] != '0000-00-00') && (($bd = z_birthday($p[0]['dob'],'UTC')) !== '')) $profile['next_birthday'] = $bd; if($age = age($p[0]['dob'],$e['channel_timezone'],'')) |