properly handle relative link elements for feed and articles (closes #358)

This commit is contained in:
Andrew Dolgov 2011-08-01 13:06:25 +04:00
parent 1aea205cc1
commit 68a57364f4
1 changed files with 5 additions and 0 deletions

View File

@ -696,6 +696,8 @@
$site_url = $rss->channel["link"]; $site_url = $rss->channel["link"];
} }
$site_url = rewrite_relative_url($fetch_url, $site_url);
if ($debug_enabled) { if ($debug_enabled) {
_debug("update_rss_feed: checking favicon..."); _debug("update_rss_feed: checking favicon...");
} }
@ -908,8 +910,11 @@
if (!$entry_link) $entry_link = $item["link"]; if (!$entry_link) $entry_link = $item["link"];
} }
$entry_link = rewrite_relative_url($site_url, $entry_link);
if ($debug_enabled) { if ($debug_enabled) {
_debug("update_rss_feed: title $entry_title"); _debug("update_rss_feed: title $entry_title");
_debug("update_rss_feed: link $entry_link");
} }
if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);; if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;