1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-02 05:57:11 +00:00

rework OPML display in pref-feeds; hide authenticated feeds from public OPML

This commit is contained in:
Andrew Dolgov
2010-06-30 13:13:57 +04:00
parent 78a5c296ae
commit c107797cf7
2 changed files with 24 additions and 16 deletions

View File

@@ -33,7 +33,8 @@
$where = "WHERE owner_uid = '$owner_uid'";
$orderby = "ORDER BY title";
if ($hide_private_feeds){
$where = "WHERE owner_uid = '$owner_uid' AND private IS false";
$where = "WHERE owner_uid = '$owner_uid' AND private IS false AND
auth_login = '' AND auth_pass = ''";
}