Aleksander Machniak
2012-08-21 fe2f0be4352ba0bc213a2c6d4dfcbbddea1a551c
program/include/rcube_vcard.php
@@ -312,8 +312,9 @@
        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':
@@ -702,7 +703,7 @@
   *
   * @param string vCard string to split
   * @param string Separator char/string
   * @return array List with splitted values
   * @return array List with splited values
   */
  private static function vcard_unquote($s, $sep = ';')
  {