Increase download_url() timeout to 5 minutes. fixes #11551 for 2.9

git-svn-id: http://svn.automattic.com/wordpress/branches/2.9@12490 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-12-22 16:43:05 +00:00
parent a1fdb6f3e0
commit d7cd7a912f
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ function download_url( $url ) {
if ( ! $handle )
return new WP_Error('http_no_file', __('Could not create Temporary file'));
$response = wp_remote_get($url, array('timeout' => 60));
$response = wp_remote_get($url, array('timeout' => 300));
if ( is_wp_error($response) ) {
fclose($handle);