Skip to content

Commit

Permalink
Fix param naming, see PHPMailer#398
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Apr 14, 2015
1 parent 333e3e6 commit 166ce3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions class.pop3.php
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 166ce3b

Please sign in to comment.