diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-24 21:02:27 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-24 21:02:27 +0000 |
| commit | 5816625cc300075c43c6ef43a200dd35e1b8257d (patch) | |
| tree | a4f12097b60ac7b0919052d1677738711eac3989 /roundcubemail/program/include | |
| parent | 73ee59cff7f37705e8131e85232060fb7ba8f525 (diff) | |
Optimized memory usage when sending a message
git-svn-id: https://svn.roundcube.net/trunk@57 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_smtp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_smtp.inc b/roundcubemail/program/include/rcube_smtp.inc index 5cea00697..e5691759c 100644 --- a/roundcubemail/program/include/rcube_smtp.inc +++ b/roundcubemail/program/include/rcube_smtp.inc @@ -49,7 +49,7 @@ $SMTP_CONN = null; * @return bool Returns TRUE on success, or FALSE on error * @access public */ -function smtp_mail($from, $recipients, $headers, $body) +function smtp_mail($from, $recipients, $headers, &$body) { global $SMTP_CONN, $CONFIG, $SMTP_ERROR; $smtp_timeout = null; |
