diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-14 06:55:57 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-14 06:55:57 +0000 |
| commit | 0033cad3d366722912342c2d280a6eb93117b521 (patch) | |
| tree | 2b6e22a2b3fc11a289a5662f1b8a3da93159392c /roundcubemail/program/lib/Mail | |
| parent | b52434c188e56ee12f7c1823876ce8ae064854e3 (diff) | |
- removed deprecated returning value of new by reference
git-svn-id: https://svn.roundcube.net/trunk@3039 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/Mail')
| -rw-r--r-- | roundcubemail/program/lib/Mail/mimeDecode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/Mail/mimeDecode.php b/roundcubemail/program/lib/Mail/mimeDecode.php index 46eabd82f..bb34f6e28 100644 --- a/roundcubemail/program/lib/Mail/mimeDecode.php +++ b/roundcubemail/program/lib/Mail/mimeDecode.php @@ -321,7 +321,7 @@ class Mail_mimeDecode extends PEAR break; case 'message/rfc822': - $obj = &new Mail_mimeDecode($body); + $obj = new Mail_mimeDecode($body); $return->parts[] = $obj->decode(array('include_bodies' => $this->_include_bodies, 'decode_bodies' => $this->_decode_bodies, 'decode_headers' => $this->_decode_headers)); |
