redirect fixes from ruckus and tellyworth. fixes #5479

git-svn-id: https://develop.svn.wordpress.org/trunk@6402 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-12-18 05:28:44 +00:00
parent 49d95f21c1
commit 6aa006ce3c
1 changed files with 3 additions and 3 deletions

View File

@ -575,7 +575,7 @@ function wp_get_http( $url, $file_path = false, $red = 1 ) {
$code = $headers['response'];
if ( ( '302' == $code || '301' == $code ) && isset( $headers['location'] ) ) {
fclose($fp);
return wp_get_http_headers( $headers['location'], $get, ++$red );
return wp_get_http( $headers['location'], $file_path, ++$red );
}
// make a note of the final location, so the caller can tell if we were redirected or not
@ -605,8 +605,8 @@ function wp_get_http( $url, $file_path = false, $red = 1 ) {
return $headers;
}
function wp_get_http_headers( $url ) {
return wp_get_http( $url, false );
function wp_get_http_headers( $url, $red = 1 ) {
return wp_get_http( $url, false, $red );
}