Changeset 5969 in subversion
- Timestamp:
- Mar 6, 2012 2:42:23 PM (15 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap_generic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r5966 r5969 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) -
trunk/roundcubemail/program/include/rcube_imap_generic.php
r5946 r5969 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.
