Changeset 49136 for trunk/src/wp-includes/PHPMailer/SMTP.php
- Timestamp:
- 10/13/2020 01:58:15 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/PHPMailer/SMTP.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/SMTP.php
r49034 r49136 10 10 * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net> 11 11 * @author Brent R. Matzelle (original founder) 12 * @copyright 2012 - 20 19Marcus Bointon12 * @copyright 2012 - 2020 Marcus Bointon 13 13 * @copyright 2010 - 2012 Jim Jagielski 14 14 * @copyright 2004 - 2009 Andy Prevost … … 35 35 * @var string 36 36 */ 37 const VERSION = '6.1. 7';37 const VERSION = '6.1.8'; 38 38 39 39 /** … … 418 418 if (strpos(PHP_OS, 'WIN') !== 0) { 419 419 $max = (int)ini_get('max_execution_time'); 420 // Don't bother if unlimited 421 if (0 !== $max && $timeout > $max ) {420 // Don't bother if unlimited, or if set_time_limit is disabled 421 if (0 !== $max && $timeout > $max && strpos(ini_get('disable_functions'), 'set_time_limit') === false) { 422 422 @set_time_limit($timeout); 423 423 }
Note: See TracChangeset
for help on using the changeset viewer.