From af58301f946816468f7ce30fbf5dc164f6cad652 Mon Sep 17 00:00:00 2001
From: chilic <chilic@651738.no-reply.drupal.org>
Date: Tue, 17 Dec 2013 21:54:19 -0500
Subject: [PATCH] Issue #2150989 by chilic | osopolar: SimpleTest fails:
 Undefined index: content-type, Notice file: http_request.inc Line: 57.

---
 libraries/http_request.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libraries/http_request.inc b/libraries/http_request.inc
index 9a2629d9..7e70fe6c 100644
--- a/libraries/http_request.inc
+++ b/libraries/http_request.inc
@@ -54,7 +54,7 @@ function http_request_get_common_syndication($url, $settings = NULL) {
   // @see http_request_get.
   $downloaded_string = $download->data;
   // If this happens to be a feed then just return the url.
-  if (http_request_is_feed($download->headers['content-type'], $downloaded_string)) {
+  if (isset($download->headers['content-type']) && http_request_is_feed($download->headers['content-type'], $downloaded_string)) {
     return $url;
   }
 
-- 
GitLab