summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-06-30 13:13:57 +0400
committerAndrew Dolgov <[email protected]>2010-06-30 13:13:57 +0400
commitc107797cf71f95f4bd0b23eb76924276a31f9eef (patch)
tree9b51afe7cb04adb194d1c960faff86a037b3087c /opml.php
parent78a5c296ae8a1f5e54df496fbb42f50b639565cc (diff)
rework OPML display in pref-feeds; hide authenticated feeds from public OPML
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/opml.php b/opml.php
index 4524dc335..35e36d24a 100644
--- a/opml.php
+++ b/opml.php
@@ -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 = ''";
}