Merge pull request #649 from mexon/redirect_fix
Restore redirect functionality removed by change 452ff19d
This commit is contained in:
commit
1a49c841d8
|
@ -88,9 +88,10 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
|
||||||
if (($new_location_info["path"] == "") AND ($new_location_info["host"] != ""))
|
if (($new_location_info["path"] == "") AND ($new_location_info["host"] != ""))
|
||||||
$newurl = $new_location_info["scheme"]."://".$new_location_info["host"].$old_location_info["path"];
|
$newurl = $new_location_info["scheme"]."://".$new_location_info["host"].$old_location_info["path"];
|
||||||
|
|
||||||
//$matches = array();
|
$matches = array();
|
||||||
//preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
|
if (preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches)) {
|
||||||
//$newurl = trim(array_pop($matches));
|
$newurl = trim(array_pop($matches));
|
||||||
|
}
|
||||||
if(strpos($newurl,'/') === 0)
|
if(strpos($newurl,'/') === 0)
|
||||||
$newurl = $url . $newurl;
|
$newurl = $url . $newurl;
|
||||||
$url_parsed = @parse_url($newurl);
|
$url_parsed = @parse_url($newurl);
|
||||||
|
|
Loading…
Reference in a new issue