wp/wp-includes/class-pop3.php
changeset 22 8c2e4d02f4ef
parent 21 48c4eec2b7e6
--- a/wp/wp-includes/class-pop3.php	Fri Sep 05 18:40:08 2025 +0200
+++ b/wp/wp-includes/class-pop3.php	Fri Sep 05 18:52:52 2025 +0200
@@ -59,6 +59,7 @@
         if(!empty($timeout)) {
             settype($timeout,"integer");
             $this->TIMEOUT = $timeout;
+            // Extend POP3 request timeout to the specified TIMEOUT property.
             if(function_exists("set_time_limit")){
                 set_time_limit($timeout);
             }
@@ -74,6 +75,7 @@
 	}
 
     function update_timer () {
+        // Extend POP3 request timeout to the specified TIMEOUT property.
         if(function_exists("set_time_limit")){
             set_time_limit($this->TIMEOUT);
         }