Favicon array bug

Case problem and isset check
This commit is contained in:
Alexandre Alapetite
2016-04-23 21:35:09 +02:00
parent 4862652585
commit f3696784ea
2 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,8 @@ class DataAccess {
public function retrieveHeader($url) {
$this->set_context();
return @get_headers($url, TRUE);
$headers = @get_headers($url, 1);
return array_change_key_case($headers);
}
public function saveCache($file, $data) {

View File

@@ -99,7 +99,7 @@ class Favicon
switch ($status) {
case '301':
case '302':
$url = $headers['Location'];
$url = isset($headers['location']) ? $headers['location'] : '';
break;
default:
$loop = FALSE;