Index: branches/5.2.x/core/kernel/utility/email_send.php =================================================================== diff -u -N -r15106 -r15137 --- branches/5.2.x/core/kernel/utility/email_send.php (.../email_send.php) (revision 15106) +++ branches/5.2.x/core/kernel/utility/email_send.php (.../email_send.php) (revision 15137) @@ -1,6 +1,6 @@ sendMethod == 'SMTP') { // create connection object if we will use SMTP - $this->smtpSocket =& $this->Application->makeClass('Socket'); + $this->smtpSocket = $this->Application->makeClass('Socket'); } $this->SetCharset(null, true); @@ -1697,7 +1697,7 @@ function SetCharset($charset, $is_system = false) { if ( $is_system ) { - $language =& $this->Application->recallObject('lang.current'); + $language = $this->Application->recallObject('lang.current'); /* @var $language LanguagesItem */ $charset = $language->GetDBField('Charset') ? $language->GetDBField('Charset') : 'ISO-8859-1';