From 832b7bfc585513634d17ca66ee4a3c54785d6c7c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 27 Nov 2005 20:35:56 +0100 Subject: [PATCH] one more fix for Magpie link_ weirdness --- functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index d1c43eeb0..f0077efae 100644 --- a/functions.php +++ b/functions.php @@ -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'"); }