Changeset 4781 in subversion
- Timestamp:
- May 18, 2011 6:15:12 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_vcard.php
r4765 r4781 332 332 } 333 333 334 /** 335 * Setter for individual vcard properties 336 * 337 * @param string VCard tag name 338 * @param array Value-set of this vcard property 339 * @param boolean Set to true if the value-set should be appended instead of replacing any existing value-set 340 */ 341 public function set_raw($tag, $value, $append = false) 342 { 343 $index = $append ? count($this->raw[$tag]) : 0; 344 $this->raw[$tag][$index] = (array)$value; 345 } 346 334 347 335 348 /** … … 652 665 } 653 666 else { 654 return strtr($s, array("\r" => '', '\\\\' => '\\', '\n' => "\n", '\N' => "\n", '\,' => ',', '\;' => ';' ));667 return strtr($s, array("\r" => '', '\\\\' => '\\', '\n' => "\n", '\N' => "\n", '\,' => ',', '\;' => ';', '\:' => ':')); 655 668 } 656 669 }
Note: See TracChangeset
for help on using the changeset viewer.
