Changes from branches/2.9/wp-admin/includes/file.php at r12545 to trunk/wp-admin/includes/file.php at r12310
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/file.php
r12545 r12310 236 236 237 237 // You may have had one or more 'wp_handle_upload_prefilter' functions error out the file. Handle that gracefully. 238 if ( isset( $file['error'] ) && ! is_numeric( $file['error'] ) && $file['error'] )238 if ( isset( $file['error'] ) && !ctype_digit( $file['error'] ) && $file['error'] ) 239 239 return $upload_error_handler( $file, $file['error'] ); 240 240 … … 459 459 return new WP_Error('http_no_file', __('Could not create Temporary file')); 460 460 461 $response = wp_remote_get($url, array('timeout' => 300));461 $response = wp_remote_get($url, array('timeout' => 60)); 462 462 463 463 if ( is_wp_error($response) ) {
Note: See TracChangeset
for help on using the changeset viewer.