mirror of
git://develop.git.wordpress.org/
synced 2025-01-18 05:18:42 +01:00
Fix for header redirects - Hat tip: http://www.davidmeade.com/post/post.php?topicID=579
git-svn-id: https://develop.svn.wordpress.org/trunk@2956 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
25458f93b8
commit
d7605dd6ad
@ -925,9 +925,13 @@ function do_enclose( $content, $post_ID ) {
|
||||
endforeach;
|
||||
}
|
||||
|
||||
function wp_get_http_headers( $url ) {
|
||||
function wp_get_http_headers( $url, $red = 1 ) {
|
||||
global $wp_version;
|
||||
@set_time_limit( 60 );
|
||||
|
||||
if ( $red > 5 )
|
||||
return false;
|
||||
|
||||
$parts = parse_url( $url );
|
||||
$file = $parts['path'] . ($parts['query'] ? '?'.$parts['query'] : '');
|
||||
$host = $parts['host'];
|
||||
@ -952,6 +956,13 @@ function wp_get_http_headers( $url ) {
|
||||
$headers["$key"] = $matches[2][$i];
|
||||
}
|
||||
|
||||
$code = preg_replace('/.*?(\d{3}).*/i', '$1', $response);
|
||||
|
||||
$headers['status_code'] = $code;
|
||||
|
||||
if ( '302' == $code || '301' == $code )
|
||||
return wp_get_http_headers( $url, ++$red );
|
||||
|
||||
preg_match('/.*([0-9]{3}).*/', $response, $return);
|
||||
$headers['response'] = $return[1]; // HTTP response code eg 204, 200, 404
|
||||
return $headers;
|
||||
|
Loading…
x
Reference in New Issue
Block a user