Changeset 2185899 in github
- Timestamp:
- Aug 9, 2011 5:53:37 AM (22 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 8dd172a
- Parents:
- 6d0ada3
- Files:
-
- 2 edited
-
program/include/rcube_imap.php (modified) (1 diff)
-
tests/maildecode.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_imap.php
r6d0ada3 r2185899 4773 4773 $name = trim($m[1]); 4774 4774 } 4775 else if (preg_match('/^( \S+@\S+)$/', $val, $m)) {4775 else if (preg_match('/^('.$email_rx.')$/', $val, $m)) { 4776 4776 $address = $m[1]; 4777 4777 $name = ''; -
tests/maildecode.php
r6d0ada3 r2185899 47 47 // 1487939 48 48 19 => 'Test <"test test"@domain.tld>', 49 20 => '<"test test"@domain.tld>', 50 21 => '"test test"@domain.tld', 49 51 ); 50 52 … … 70 72 18 => array(1, 'Test,Test', 'test@domain.tld'), 71 73 19 => array(1, 'Test', '"test test"@domain.tld'), 74 20 => array(1, '', '"test test"@domain.tld'), 75 21 => array(1, '', '"test test"@domain.tld'), 72 76 ); 73 77
Note: See TracChangeset
for help on using the changeset viewer.
