mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Enclosure redirect fix from aegrumet. fixes #2551
git-svn-id: http://svn.automattic.com/wordpress/trunk@3793 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
419f125cb7
commit
f072c902db
@ -964,15 +964,13 @@ function wp_get_http_headers( $url, $red = 1 ) {
|
||||
$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
|
||||
|
||||
$code = $headers['response'];
|
||||
if ( ('302' == $code || '301' == $code) && isset($headers['location']) )
|
||||
return wp_get_http_headers( $headers['location'], ++$red );
|
||||
|
||||
return $headers;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user