Index: branches/5.2.x/core/units/helpers/mailbox_helper.php =================================================================== diff -u -N -r14628 -r15137 --- branches/5.2.x/core/units/helpers/mailbox_helper.php (.../mailbox_helper.php) (revision 14628) +++ branches/5.2.x/core/units/helpers/mailbox_helper.php (.../mailbox_helper.php) (revision 15137) @@ -1,6 +1,6 @@ Application->makeClass('POP3Helper', Array ($connection_info)); + $pop3_helper = $this->Application->makeClass('POP3Helper', Array ($connection_info)); /* @var $pop3_helper POP3Helper */ $connection_status = $pop3_helper->initMailbox(); @@ -238,7 +238,7 @@ return false; } - $esender =& $this->Application->recallObject('EmailSender'); + $esender = $this->Application->recallObject('EmailSender'); /* @var $esender kEmailSendingHelper */ // Get the return address @@ -306,7 +306,7 @@ $message_body = $esender->ConvertToText($message_body); } - $mime_decode_helper =& $this->Application->recallObject('MimeDecodeHelper'); + $mime_decode_helper = $this->Application->recallObject('MimeDecodeHelper'); /* @var $mime_decode_helper MimeDecodeHelper */ // convert to site encoding @@ -370,7 +370,7 @@ { $message = preg_replace("/\r?\n/", "\r\n", trim($message)); - $mime_decode_helper =& $this->Application->recallObject('MimeDecodeHelper'); + $mime_decode_helper = $this->Application->recallObject('MimeDecodeHelper'); /* @var $mime_decode_helper MimeDecodeHelper */ // 1. separate headers from bodies