Skip to content

Commit

Permalink
Fix storing X-ANNIVERSARY date in vCard format (#1488527)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Jun 10, 2012
1 parent a2ec2eb commit 2c48c19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================

- Fix storing X-ANNIVERSARY date in vCard format (#1488527)
- Update to Mail_Mime-1.8.5 (#1488521)
- Fix XSS vulnerability in message subject handling using Larry skin (#1488519)
- Fix handling of links with various URI schemes e.g. "skype:" (#1488106)
Expand Down
5 changes: 3 additions & 2 deletions program/include/rcube_vcard.php
Expand Up @@ -315,8 +315,9 @@ public function set($field, $value, $type = 'HOME')
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':
Expand Down

0 comments on commit 2c48c19

Please sign in to comment.