ereg -> preg_match

This commit is contained in:
gnuboard
2013-12-05 15:06:57 +09:00
parent 7bfc0bb91b
commit c05d81cf29

View File

@ -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 {