diff options
author | redmatrix <git@macgirvin.com> | 2016-02-26 12:45:44 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-26 12:45:44 -0800 |
commit | 459166116d926df23c73a839f3c87c2cfd2ba4ab (patch) | |
tree | d2b612664cd26070c76978c21457713ae2a8db0e /include/datetime.php | |
parent | dc8c7a2d2e8060d295c46637e2f1caac76aca6fa (diff) | |
download | volse-hubzilla-459166116d926df23c73a839f3c87c2cfd2ba4ab.tar.gz volse-hubzilla-459166116d926df23c73a839f3c87c2cfd2ba4ab.tar.bz2 volse-hubzilla-459166116d926df23c73a839f3c87c2cfd2ba4ab.zip |
turn timezone aware birthdays into a feature for those who want an uncluttered calendar - at the expense of possibly sending somebody's birthday greeting on the wrong day if they are in a different timezone.
Diffstat (limited to 'include/datetime.php')
-rw-r--r-- | include/datetime.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/datetime.php b/include/datetime.php index bfd806f32..ace1ad14f 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -549,7 +549,7 @@ function update_birthdays() { $ev['event_xchan'] = $rr['xchan_hash']; $ev['start'] = datetime_convert('UTC', 'UTC', $rr['abook_dob']); $ev['finish'] = datetime_convert('UTC', 'UTC', $rr['abook_dob'] . ' + 1 day '); - $ev['adjust'] = 1; + $ev['adjust'] = intval(feature_enabled($rr['abook_channel'],'smart_birthdays')); $ev['summary'] = sprintf( t('%1$s\'s birthday'), $rr['xchan_name']); $ev['description'] = sprintf( t('Happy Birthday %1$s'), '[zrl=' . $rr['xchan_url'] . ']' . $rr['xchan_name'] . '[/zrl]') ; |