diff options
author | thomascube <thomas@roundcube.net> | 2008-03-09 16:02:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-09 16:02:10 +0000 |
commit | 696d0c60c391be71ac58f7fc719ced47863fe756 (patch) | |
tree | eb282393c26bc38ef2ad4daab1fee903587c476b /program | |
parent | cccc130ca6d744047ff80d260b74edccbd7fe318 (diff) |
Remove unnecessary flush() causing headers-sent message (#1484860)
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/imap.inc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index e9b46847d..905d3e2e5 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -2448,7 +2448,6 @@ function iil_C_Append(&$conn, $folder, &$message) { if (fputs($fp, $request)) { $line=iil_ReadLine($fp, 100); $sent = fwrite($fp, $message."\r\n"); - flush(); do { $line=iil_ReadLine($fp, 1000); } while ($line[0] != 'A'); |