From 355b4acec9c536753d70d86011e89a84bab39eab Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Thu, 18 Aug 2005 21:21:24 +0000 Subject: [PATCH] Disabled in safe mode. git-svn-id: https://develop.svn.wordpress.org/trunk@2790 602fd350-edb4-49c9-b593-d223f7449a82 --- 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'];