diff --git a/wp-includes/functions.php b/wp-includes/functions.php index d7043dfc06..43aff203d7 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -874,7 +874,7 @@ function do_enclose( $content, $post_ID ) { } function wp_get_http_headers( $url ) { - set_time_limit( 60 ); + @set_time_limit( 60 ); $parts = parse_url( $url ); $file = $parts['path'] . ($parts['query'] ? '?'.$parts['query'] : ''); $host = $parts['host'];