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