Changeset 3033 in subversion
- Timestamp:
- Oct 12, 2009 5:44:04 AM (4 years ago)
- Location:
- trunk/roundcubemail
- 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
-
trunk/roundcubemail/CHANGELOG
r3030 r3033 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) -
trunk/roundcubemail/program/include/main.inc
r3003 r3033 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 -
trunk/roundcubemail/program/include/rcube_vcard.php
r2771 r3033 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.
