From 4b2090d5920c28c87764d50487cd22a2e205f901 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 18 Aug 2005 21:21:24 +0000 Subject: [PATCH] Disabled in safe mode. git-svn-id: http://svn.automattic.com/wordpress/trunk@2790 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'];