diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-06-10 10:09:01 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-06-10 10:09:01 +0200 |
commit | 6e1864cb1731bb870d775ac15eea6589a779ab2e (patch) | |
tree | 9df6dc7c8127c9e6faa3e357302117c80d87976b /program/include/rcube_vcard.php | |
parent | 235680a2f156511b9cfd953c17e91fc572e0977c (diff) |
Fix storing X-ANNIVERSARY date in vCard format (#1488527)
Diffstat (limited to 'program/include/rcube_vcard.php')
-rw-r--r-- | program/include/rcube_vcard.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/include/rcube_vcard.php b/program/include/rcube_vcard.php index b03ba9cfa..52545a0d9 100644 --- a/program/include/rcube_vcard.php +++ b/program/include/rcube_vcard.php @@ -312,8 +312,9 @@ class rcube_vcard break; case 'birthday': - if ($val = rcube_strtotime($value)) - $this->raw['BDAY'][] = array(0 => date('Y-m-d', $val), 'value' => array('date')); + case 'anniversary': + if (($val = rcube_strtotime($value)) && ($fn = self::$fieldmap[$field])) + $this->raw[$fn][] = array(0 => date('Y-m-d', $val), 'value' => array('date')); break; case 'address': |