redirect fixes from ruckus and tellyworth. fixes #5479

git-svn-id: http://svn.automattic.com/wordpress/trunk@6402 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-12-18 05:28:44 +00:00
parent 83ccac4372
commit 49d8db4cbe

View File

@ -575,7 +575,7 @@ function wp_get_http( $url, $file_path = false, $red = 1 ) {
$code = $headers['response']; $code = $headers['response'];
if ( ( '302' == $code || '301' == $code ) && isset( $headers['location'] ) ) { if ( ( '302' == $code || '301' == $code ) && isset( $headers['location'] ) ) {
fclose($fp); 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 // 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; return $headers;
} }
function wp_get_http_headers( $url ) { function wp_get_http_headers( $url, $red = 1 ) {
return wp_get_http( $url, false ); return wp_get_http( $url, false, $red );
} }