Changeset a9bfe21 in github
- Timestamp:
- Oct 12, 2009 5:44:04 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 4f693281
- Parents:
- 144b848
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/main.inc (modified) (2 diffs)
-
program/include/rcube_vcard.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r1904fa7 ra9bfe21 2 2 =========================== 3 3 4 - Added XIMSS (Communigate) driver for Password plugin 4 - Fix importing/sending to email address with whitespace (#1486214) 5 - Added XIMSS (CommuniGate) driver for Password plugin 5 6 - Fix newly attached files are not saved in drafts w/o editing any text (#1486202) 6 7 - Added attachment upload indicator with parallel upload (#1486058) -
program/include/main.inc
rcb89616 ra9bfe21 947 947 948 948 /** 949 * Compose a valid representa ion of name and e-mail address949 * Compose a valid representation of name and e-mail address 950 950 * 951 951 * @param string E-mail address … … 958 958 { 959 959 // Special chars as defined by RFC 822 need to in quoted string (or escaped). 960 return sprintf('%s <%s>', preg_match('/[\(\)\<\>\\\.\[\]@,;:"]/', $name) ? '"'.addcslashes($name, '"').'"' : $name, $email);960 return sprintf('%s <%s>', preg_match('/[\(\)\<\>\\\.\[\]@,;:"]/', $name) ? '"'.addcslashes($name, '"').'"' : $name, trim($email)); 961 961 } 962 962 else 963 return $email;963 return trim($email); 964 964 } 965 965 -
program/include/rcube_vcard.php
r93af155 ra9bfe21 270 270 foreach($regs2[1] as $attrid => $attr) { 271 271 if ((list($key, $value) = explode('=', $attr)) && $value) { 272 $value = trim($value); 272 273 if ($key == 'ENCODING') { 273 274 // add next line(s) to value string if QP line end detected
Note: See TracChangeset
for help on using the changeset viewer.
