From: Andrew Dolgov Date: Thu, 21 Apr 2011 11:52:41 +0000 (+0400) Subject: update_feedbrowser_cache: properly skip feeds with configured authentication X-Git-Tag: 1.5.3-proper X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=d206ae1d6a2c5cbd213cbaaeef03e9d8e15c9e88;p=tt-rss.git update_feedbrowser_cache: properly skip feeds with configured authentication --- diff --git a/functions.php b/functions.php index f966a9a0..e66c84ae 100644 --- a/functions.php +++ b/functions.php @@ -5884,7 +5884,7 @@ $result = db_query($link, "SELECT feed_url, site_url, title, COUNT(id) AS subscribers FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf WHERE tf.feed_url = ttrss_feeds.feed_url - AND (private IS true OR feed_url LIKE '%:%@%/%')) + AND (private IS true OR auth_login != '' OR auth_pass != '' OR feed_url LIKE '%:%@%/%')) GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT 1000"); db_query($link, "BEGIN");