From fee909d5aa384dfaceaaa92653db8c09745123f9 Mon Sep 17 00:00:00 2001 From: Matthew Katz Date: Mon, 12 Apr 2010 22:38:51 -0400 Subject: adding text attribute to categories fixed query for enable_feed_cats to actually query for the user instead of overall. --- opml.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'opml.php') diff --git a/opml.php b/opml.php index 2e9f2368f..d808c8f9e 100644 --- a/opml.php +++ b/opml.php @@ -32,7 +32,9 @@ $where = "WHERE owner_uid = '$owner_uid' AND private IS false"; } - if (get_pref($link, 'ENABLE_FEED_CATS')) { + + + if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid) == true) { $cat_mode = true; $select = "SELECT title, feed_url, site_url, @@ -40,6 +42,13 @@ $orderby = "ORDER BY cat_title, title"; } + else{ + $cat_feed = get_pref($link, 'ENABLE_FEED_CATS'); + print ""; + print ""; + + } + $result = db_query($link, $select." FROM ttrss_feeds ".$where." ".$orderby); @@ -59,7 +68,7 @@ } if ($cat_title) { - print "\n"; + print "\n"; } $old_cat_title = $cat_title; -- cgit v1.2.3