Changeset 76a89bf in github


Ignore:
Timestamp:
Apr 15, 2008 9:23:52 AM (5 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
d7a411f
Parents:
47fab0a
Message:

#1333167
#1484916

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    ra901aa5 r76a89bf  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42008/04/15 (alec) 
     5---------- 
     6- Fix remove signature when replying (#1333167) 
     7- Fix problem with line with a space at the end (#1484916) 
     8- Don't send set_env() in ajax response when env array is empty 
    39 
    4102008/04/14 (alec) 
  • program/lib/imap.inc

    rb5c2469 r76a89bf  
    23612361                $received += strlen($line); 
    23622362                if ($mode == 1) { 
    2363                     $result .= chop($line) . "\n"; 
     2363                    $result .= rtrim($line, "\t\r\n\0\x0B") . "\n"; 
    23642364                } else if ($mode == 2) { 
    2365                     echo chop($line) . "\n"; flush(); 
     2365                    echo rtrim($line, "\t\r\n\0\x0B") . "\n"; flush(); 
    23662366                } else if ($mode == 3) { 
    23672367                    echo base64_decode($line); flush(); 
     
    23752375         
    23762376        if ($result) { 
    2377                         $result = chop($result); 
     2377            $result = rtrim($result, "\t\r\n\0\x0B"); 
    23782378            return $result; // substr($result, 0, strlen($result)-1); 
    23792379        } 
Note: See TracChangeset for help on using the changeset viewer.