Make WordPress Core


Ignore:
Timestamp:
10/25/2024 08:24:08 PM (6 weeks ago)
Author:
SergeyBiryukov
Message:

Docs: Adjust comments about set_time_limit() per the documentation standards.

Includes splitting long comments into multiple lines and moving a few comments above the function_exists() check for more consistent placement.

Follow-up to [59039], [59288].

See #62281.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-pop3.php

    r59039 r59291  
    6060            settype($timeout,"integer");
    6161            $this->TIMEOUT = $timeout;
     62            // Extend POP3 request timeout to the specified TIMEOUT property.
    6263            if(function_exists("set_time_limit")){
    63                 // Extends POP3 request timeout to specified TIMEOUT property.
    6464                set_time_limit($timeout);
    6565            }
     
    7676
    7777    function update_timer () {
     78        // Extend POP3 request timeout to the specified TIMEOUT property.
    7879        if(function_exists("set_time_limit")){
    79             // Allows additional extension of POP3 request timeout to specified TIMEOUT property when update_timer is called.
    8080            set_time_limit($this->TIMEOUT);
    8181        }
Note: See TracChangeset for help on using the changeset viewer.