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

    r59267 r59291  
    31213121
    31223122        if ( $pingback_server_url ) {
     3123            // Allow an additional 60 seconds for each pingback to complete.
    31233124            if ( function_exists( 'set_time_limit' ) ) {
    3124                 // Allows an additional 60 seconds for each pingback to complete.
    31253125                set_time_limit( 60 );
    31263126            }
Note: See TracChangeset for help on using the changeset viewer.