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-admin/includes/ajax-actions.php

    r59288 r59291  
    35573557    $return = array();
    35583558
     3559    // Increase the script timeout limit to allow ample time for diff UI setup.
    35593560    if ( function_exists( 'set_time_limit' ) ) {
    3560         // Increase the script timeout limit to allow ample time for diff UI setup.
    35613561        set_time_limit( 5 * MINUTE_IN_SECONDS );
    35623562    }
Note: See TracChangeset for help on using the changeset viewer.