diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2011-04-20 20:10:57 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2011-04-20 20:10:57 +0400 |
| commit | 2b9c4bae07bc0a3c0490f7de2e025cea17950eb5 (patch) | |
| tree | 447d9a4d0103c66fe2a1eceb678cb0314cd4fbce /functions.php | |
| parent | d61063c730ca31a442968ed7076e7b710d0dacb8 (diff) | |
get_linked_feeds: properly set feedbrowser cache (fix typo)
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php index e5d7e5986..f966a9a0a 100644 --- a/functions.php +++ b/functions.php @@ -7408,7 +7408,7 @@ $feed_url = db_escape_string($feed['feed_url']); $title = db_escape_string($feed['title']); $subscribers = db_escape_string($feed['subscribers']); - $site_url = db_escape_string($site['site_url']); + $site_url = db_escape_string($feed['site_url']); db_query($link, "INSERT INTO ttrss_linked_feeds (feed_url, site_url, title, subscribers, instance_id, created, updated) |