1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 21:31:28 +00:00

fetch: check if http_response_header is set

This commit is contained in:
Andrew Dolgov
2013-04-24 10:45:44 +04:00
parent 48c1d0c71b
commit 37ddf5b7e7

View File

@@ -407,7 +407,7 @@
$data = @file_get_contents($url, false, $context);
$fetch_last_content_type = false; // reset if no type was sent from server
if (is_array($http_response_header)) {
if (isset($http_response_header) && is_array($http_response_header)) {
foreach ($http_response_header as $h) {
if (substr(strtolower($h), 0, 13) == 'content-type:') {
$fetch_last_content_type = substr($h, 14);