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/deprecated.php

    r59198 r59291  
    36743674    _deprecated_function( __FUNCTION__, '4.4.0', 'WP_Http' );
    36753675
    3676     // Adds an additional 60 seconds to the script timeout to ensure the remote request has enough time.
     3676    // Add 60 seconds to the script timeout to ensure the remote request has enough time.
    36773677    if ( function_exists( 'set_time_limit' ) ) {
    36783678        @set_time_limit( 60 );
Note: See TracChangeset for help on using the changeset viewer.