0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00

Fix param naming, see #398

This commit is contained in:
Synchro 2015-04-14 13:13:26 +02:00
parent 333e3e60ce
commit 166ce3b533

View File

@ -140,13 +140,13 @@ class POP3
public static function popBeforeSmtp(
$host,
$port = false,
$tval = false,
$timeout = false,
$username = '',
$password = '',
$debug_level = 0
) {
$pop = new POP3;
return $pop->authorise($host, $port, $tval, $username, $password, $debug_level);
return $pop->authorise($host, $port, $timeout, $username, $password, $debug_level);
}
/**