Description: Removes a warning: Assigning the return value of new by reference is deprecated
Author: russell@coker.com.au
Forwarded: no
--- a/Mail-1.2.0/Mail/smtp.php
+++ b/Mail-1.2.0/Mail/smtp.php
@@ -346,7 +346,7 @@ class Mail_smtp extends Mail {
         }
 
         include_once 'Net/SMTP.php';
-        $this->_smtp = &new Net_SMTP($this->host,
+        $this->_smtp = new Net_SMTP($this->host,
                                      $this->port,
                                      $this->localhost);
 
