From: Andrew Dolgov Date: Fri, 24 Aug 2007 01:17:54 +0000 (+0100) Subject: check_for_update: fix calling sanitize_rss() X-Git-Tag: 1.2.15~82 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=dcf7fd08d1826f0289c99bea4d32a566f1224505;p=tt-rss.git check_for_update: fix calling sanitize_rss() --- diff --git a/functions.php b/functions.php index ce63eae1..ca3d9d3b 100644 --- a/functions.php +++ b/functions.php @@ -3169,8 +3169,8 @@ $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title)); if (ENABLE_SIMPLEPIE) { - $release_url = sanitize_rss($latest_item->get_link()); - $content = sanitize_rss($latest_item->get_description()); + $release_url = sanitize_rss($link, $latest_item->get_link()); + $content = sanitize_rss($link, $latest_item->get_description()); } else { $release_url = sanitize_rss($link, $latest_item["link"]); $content = sanitize_rss($link, $latest_item["description"]);