From 37ddf5b7e76114239085badfc0b1e5f94ca32480 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 Apr 2013 10:45:44 +0400 Subject: [PATCH] fetch: check if http_response_header is set --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions.php b/include/functions.php index 8a414aec2..10a3504f2 100644 --- a/include/functions.php +++ b/include/functions.php @@ -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);