Changeset 59291 for trunk/src/wp-includes/class-pop3.php
- Timestamp:
- 10/25/2024 08:24:08 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-pop3.php
r59039 r59291 60 60 settype($timeout,"integer"); 61 61 $this->TIMEOUT = $timeout; 62 // Extend POP3 request timeout to the specified TIMEOUT property. 62 63 if(function_exists("set_time_limit")){ 63 // Extends POP3 request timeout to specified TIMEOUT property.64 64 set_time_limit($timeout); 65 65 } … … 76 76 77 77 function update_timer () { 78 // Extend POP3 request timeout to the specified TIMEOUT property. 78 79 if(function_exists("set_time_limit")){ 79 // Allows additional extension of POP3 request timeout to specified TIMEOUT property when update_timer is called.80 80 set_time_limit($this->TIMEOUT); 81 81 }
Note: See TracChangeset
for help on using the changeset viewer.