Changeset 55258
- Timestamp:
- 02/07/2023 01:26:46 PM (21 months ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r55210 r55258 3529 3529 3530 3530 $return = array(); 3531 set_time_limit( 0 ); 3531 3532 if ( function_exists( 'set_time_limit' ) ) { 3533 set_time_limit( 0 ); 3534 } 3532 3535 3533 3536 foreach ( $_REQUEST['compare'] as $compare_key ) { -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r55229 r55258 472 472 $clear_destination = $args['clear_destination']; 473 473 474 set_time_limit( 300 ); 474 if ( function_exists( 'set_time_limit' ) ) { 475 set_time_limit( 300 ); 476 } 475 477 476 478 if ( empty( $source ) || empty( $destination ) ) { -
trunk/src/wp-admin/includes/file.php
r55226 r55258 541 541 542 542 // Make sure PHP process doesn't die before loopback requests complete. 543 set_time_limit( 5 * MINUTE_IN_SECONDS ); 543 if ( function_exists( 'set_time_limit' ) ) { 544 set_time_limit( 5 * MINUTE_IN_SECONDS ); 545 } 544 546 545 547 // Time to wait for loopback requests to finish. -
trunk/src/wp-admin/includes/update-core.php
r55225 r55258 1054 1054 global $wp_filesystem, $_old_files, $_old_requests_files, $_new_bundled_files, $wpdb; 1055 1055 1056 set_time_limit( 300 ); 1056 if ( function_exists( 'set_time_limit' ) ) { 1057 set_time_limit( 300 ); 1058 } 1057 1059 1058 1060 /* -
trunk/src/wp-includes/comment.php
r55213 r55258 3112 3112 3113 3113 if ( $pingback_server_url ) { 3114 set_time_limit( 60 ); 3114 if ( function_exists( 'set_time_limit' ) ) { 3115 set_time_limit( 60 ); 3116 } 3117 3115 3118 // Now, the RPC call. 3116 3119 $pagelinkedfrom = get_permalink( $post ); -
trunk/src/wp-includes/deprecated.php
r55207 r55258 3660 3660 _deprecated_function( __FUNCTION__, '4.4.0', 'WP_Http' ); 3661 3661 3662 @set_time_limit( 60 ); 3662 if ( function_exists( 'set_time_limit' ) ) { 3663 @set_time_limit( 60 ); 3664 } 3663 3665 3664 3666 if ( $red > 5 )
Note: See TracChangeset
for help on using the changeset viewer.