diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-05-13 10:07:38 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-05-13 10:07:38 +0000 |
| commit | 982f41d5c8efc9e500dba2b9f2a6dec7bd74e9aa (patch) | |
| tree | 4c766c49d525dee8080ca94b664197732c4d5a64 | |
| parent | ce92386d2847df86870f4a87d5ca5c1f4925998d (diff) | |
- handle one convert_uudecode() warning
git-svn-id: https://svn.roundcube.net/trunk@2473 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/lib/imap.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index 2427e4652..61ba22414 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -2418,6 +2418,8 @@ function iil_C_HandlePartBody(&$conn, $mailbox, $id, $part='', $encoding=NULL, $ else $result .= quoted_printable_decode($line); } else if ($mode == 3) { + if ($line == 'end') + continue; if ($file) fwrite($file, convert_uudecode($line)); else if ($print) |
