diff options
author | thomascube <thomas@roundcube.net> | 2008-11-23 12:34:37 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-11-23 12:34:37 +0000 |
commit | 9c314bc2680db8e931886e4f645c86e629a58e2b (patch) | |
tree | 0007ffa3c561d9880cbd533c246d7822b5bfa202 /program/lib/imap.inc | |
parent | d59aaa1aafb204ba7ece824fee0550f907af8c3d (diff) |
Fix call-time pass-by-reference warnings
Diffstat (limited to 'program/lib/imap.inc')
-rw-r--r-- | program/lib/imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index af5c69ec5..f269c2127 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -2354,7 +2354,7 @@ function iil_C_FetchPartHeader(&$conn, $mailbox, $id, $part) { $part = empty($part) ? 'HEADER' : $part.'.MIME'; - return iil_C_HandlePartBody(&$conn, $mailbox, $id, $part, 1); + return iil_C_HandlePartBody($conn, $mailbox, $id, $part, 1); } function iil_C_HandlePartBody(&$conn, $mailbox, $id, $part='', $mode=1, $file=NULL) { |