Changeset 59039
- Timestamp:
- 09/17/2024 10:39:58 PM (4 weeks ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r58416 r59039 3557 3557 $return = array(); 3558 3558 3559 // Removes the script timeout limit by setting it to 0 allowing ample time for diff UI setup. 3559 3560 if ( function_exists( 'set_time_limit' ) ) { 3560 3561 set_time_limit( 0 ); -
trunk/src/wp-admin/includes/class-wp-upgrader.php
r58975 r59039 525 525 $clear_destination = $args['clear_destination']; 526 526 527 // Give the upgrade an additional 300 seconds(5 minutes) to ensure the install doesn't prematurely timeout having used up the maximum script execution time upacking and downloading in WP_Upgrader->run. 527 528 if ( function_exists( 'set_time_limit' ) ) { 528 529 set_time_limit( 300 ); -
trunk/src/wp-admin/includes/update-core.php
r58975 r59039 963 963 964 964 if ( function_exists( 'set_time_limit' ) ) { 965 // Gives core update script time an additional 300 seconds(5 minutes) to finish updating large files or run on slower servers. 965 966 set_time_limit( 300 ); 966 967 } -
trunk/src/wp-includes/class-pop3.php
r55305 r59039 61 61 $this->TIMEOUT = $timeout; 62 62 if(function_exists("set_time_limit")){ 63 // Extends POP3 request timeout to specified TIMEOUT property. 63 64 set_time_limit($timeout); 64 65 } … … 76 77 function update_timer () { 77 78 if(function_exists("set_time_limit")){ 79 // Allows additional extension of POP3 request timeout to specified TIMEOUT property when update_timer is called. 78 80 set_time_limit($this->TIMEOUT); 79 81 } -
trunk/src/wp-includes/comment.php
r58962 r59039 3117 3117 if ( $pingback_server_url ) { 3118 3118 if ( function_exists( 'set_time_limit' ) ) { 3119 // Allows an additional 60 seconds for each pingback to complete. 3119 3120 set_time_limit( 60 ); 3120 3121 } -
trunk/src/wp-includes/deprecated.php
r58975 r59039 3674 3674 _deprecated_function( __FUNCTION__, '4.4.0', 'WP_Http' ); 3675 3675 3676 // Adds an additional 60 seconds to the script timeout to ensure the remote request has enough time. 3676 3677 if ( function_exists( 'set_time_limit' ) ) { 3677 3678 @set_time_limit( 60 );
Note: See TracChangeset
for help on using the changeset viewer.