summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-24 02:17:54 +0100
committerAndrew Dolgov <[email protected]>2007-08-24 02:17:54 +0100
commitdcf7fd08d1826f0289c99bea4d32a566f1224505 (patch)
tree398552429fe001bdd5947a13729e8b13e14978fd /functions.php
parente780d1d252cd9aa084478c96ffa3495ad9eccbc4 (diff)
check_for_update: fix calling sanitize_rss()
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index ce63eae12..ca3d9d3ba 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"]);