alecpl
2011-08-03 359e19a19dd45d64d14c7b29461f0fbe4f8a50bd
program/include/rcube_vcard.php
@@ -33,7 +33,7 @@
    'FN' => array(),
    'N' => array(array('','','','','')),
  );
  static private $fieldmap = array(
  private static $fieldmap = array(
    'phone'    => 'TEL',
    'birthday' => 'BDAY',
    'website'  => 'URL',
@@ -65,6 +65,7 @@
  public $notes;
  public $email = array();
  public static $eol = "\r\n";
  /**
   * Constructor
@@ -640,11 +641,11 @@
        if (self::is_empty($value))
          continue;
        $vcard .= self::vcard_quote($type) . $attr . ':' . self::vcard_quote($value) . "\n";
        $vcard .= self::vcard_quote($type) . $attr . ':' . self::vcard_quote($value) . self::$eol;
      }
    }
    return "BEGIN:VCARD\nVERSION:3.0\n{$vcard}END:VCARD";
    return 'BEGIN:VCARD' . self::$eol . 'VERSION:3.0' . self::$eol . $vcard . 'END:VCARD';
  }