Changeset 8b3c68d in github
- Timestamp:
- Mar 6, 2012 2:42:23 PM (15 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- 2f88b17
- Parents:
- 4da69b9
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap_generic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r0203f16 r8b3c68d 2 2 =========================== 3 3 4 - Fix handling of % character in IMAP protocol (#1488382) 4 5 - Fix duplicate names handling in addressbook searches (#1488375) 5 6 - Fix displaying HTML messages from Disqus (#1488372) -
program/include/rcube_imap_generic.php
rc6a9cd6 r8b3c68d 3617 3617 return 'NIL'; 3618 3618 } 3619 3619 3620 if ($string === '') { 3620 3621 return '""'; 3621 3622 } 3623 3622 3624 // atom-string (only safe characters) 3623 if (!$force_quotes && !preg_match('/[\x00-\x20\x22\x2 8-\x2A\x5B-\x5D\x7B\x7D\x80-\xFF]/', $string)) {3625 if (!$force_quotes && !preg_match('/[\x00-\x20\x22\x25\x28-\x2A\x5B-\x5D\x7B\x7D\x80-\xFF]/', $string)) { 3624 3626 return $string; 3625 3627 } 3628 3626 3629 // quoted-string 3627 3630 if (!preg_match('/[\r\n\x00\x80-\xFF]/', $string)) {
Note: See TracChangeset
for help on using the changeset viewer.
