From eac480ef5b2da8098c64f68b8d3d5b0abd5550da Mon Sep 17 00:00:00 2001
From: Dave Reid <dave@davereid.net>
Date: Thu, 16 Jun 2011 22:40:36 -0500
Subject: [PATCH] Fixed PHP notice with undefined variables in
 http_request_get_common_syndication().

---
 libraries/http_request.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libraries/http_request.inc b/libraries/http_request.inc
index 39b25c6d..1cf85807 100644
--- a/libraries/http_request.inc
+++ b/libraries/http_request.inc
@@ -32,10 +32,10 @@ class HRCurlException extends Exception {}
  *    no feeds.
  */
 function http_request_get_common_syndication($url, $settings = NULL) {
-  if (valid_url($url, TRUE)) {
+  $password = $username = NULL;
+  if (feeds_valid_url($url, TRUE)) {
     // Handle password protected feeds.
     $url_parts = parse_url($url);
-    $password = $username = NULL;
     if (!empty($url_parts['user'])) {
       $password = $url_parts['pass'];
       $username = $url_parts['user'];
-- 
GitLab