ereg -> preg_match
This commit is contained in:
@ -591,7 +591,7 @@ class PHPMailer {
|
|||||||
/* Retry while there is no connection */
|
/* Retry while there is no connection */
|
||||||
while($index < count($hosts) && $connection == false) {
|
while($index < count($hosts) && $connection == false) {
|
||||||
$hostinfo = array();
|
$hostinfo = array();
|
||||||
if(eregi('^(.+):([0-9]+)$', $hosts[$index], $hostinfo)) {
|
if(preg_match('/^(.+):([0-9]+)$/i', $hosts[$index], $hostinfo)) {
|
||||||
$host = $hostinfo[1];
|
$host = $hostinfo[1];
|
||||||
$port = $hostinfo[2];
|
$port = $hostinfo[2];
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user