Changeset 76a89bf in github
- Timestamp:
- Apr 15, 2008 9:23:52 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- d7a411f
- Parents:
- 47fab0a
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/lib/imap.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
ra901aa5 r76a89bf 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2008/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 3 9 4 10 2008/04/14 (alec) -
program/lib/imap.inc
rb5c2469 r76a89bf 2361 2361 $received += strlen($line); 2362 2362 if ($mode == 1) { 2363 $result .= chop($line) . "\n";2363 $result .= rtrim($line, "\t\r\n\0\x0B") . "\n"; 2364 2364 } else if ($mode == 2) { 2365 echo chop($line) . "\n"; flush();2365 echo rtrim($line, "\t\r\n\0\x0B") . "\n"; flush(); 2366 2366 } else if ($mode == 3) { 2367 2367 echo base64_decode($line); flush(); … … 2375 2375 2376 2376 if ($result) { 2377 $result = chop($result);2377 $result = rtrim($result, "\t\r\n\0\x0B"); 2378 2378 return $result; // substr($result, 0, strlen($result)-1); 2379 2379 }
Note: See TracChangeset
for help on using the changeset viewer.
