one more fix for Magpie link_ weirdness

This commit is contained in:
Andrew Dolgov 2005-11-27 20:35:56 +01:00
parent 59ba2c75c7
commit 832b7bfc58
1 changed files with 2 additions and 1 deletions

View File

@ -203,9 +203,10 @@
}
$site_url = $rss->channel["link"];
// weird, weird Magpie
if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
if ($site_url && $orig_site_url != db_escape_string($site_url)) {
$site_url = db_escape_string($rss->channel["link"]);
db_query($link, "UPDATE ttrss_feeds SET
site_url = '$site_url' WHERE id = '$feed'");
}