Changeset 8b3c68d in github


Ignore:
Timestamp:
Mar 6, 2012 2:42:23 PM (15 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
2f88b17
Parents:
4da69b9
Message:
  • Fix handling of % character in IMAP protocol (#1488382)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r0203f16 r8b3c68d  
    22=========================== 
    33 
     4- Fix handling of % character in IMAP protocol (#1488382) 
    45- Fix duplicate names handling in addressbook searches (#1488375) 
    56- Fix displaying HTML messages from Disqus (#1488372) 
  • program/include/rcube_imap_generic.php

    rc6a9cd6 r8b3c68d  
    36173617            return 'NIL'; 
    36183618        } 
     3619 
    36193620        if ($string === '') { 
    36203621            return '""'; 
    36213622        } 
     3623 
    36223624        // atom-string (only safe characters) 
    3623         if (!$force_quotes && !preg_match('/[\x00-\x20\x22\x28-\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)) { 
    36243626            return $string; 
    36253627        } 
     3628 
    36263629        // quoted-string 
    36273630        if (!preg_match('/[\r\n\x00\x80-\xFF]/', $string)) { 
Note: See TracChangeset for help on using the changeset viewer.