summaryrefslogtreecommitdiff
path: root/mobile
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-11 15:54:14 +0300
committerAndrew Dolgov <[email protected]>2010-01-11 15:54:14 +0300
commit117335bfcb6de6aaa6e25b53da0706af6ae12130 (patch)
treef56cba5d7085b05bec7672586db41062fbce7087 /mobile
parent4703094553165710eeb19d0cccf4fa7e368fca43 (diff)
obsolete and disable use of ttrss_feeds.hidden
Diffstat (limited to 'mobile')
-rw-r--r--mobile/classic/functions.php1
-rw-r--r--mobile/functions.php3
2 files changed, 0 insertions, 4 deletions
diff --git a/mobile/classic/functions.php b/mobile/classic/functions.php
index e7d14da6f..05409d630 100644
--- a/mobile/classic/functions.php
+++ b/mobile/classic/functions.php
@@ -127,7 +127,6 @@
FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
ON (ttrss_feed_categories.id = cat_id)
WHERE
- ttrss_feeds.hidden = false AND
ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
ORDER BY $order_by_qpart");
diff --git a/mobile/functions.php b/mobile/functions.php
index ddc5bf790..c1bb61c54 100644
--- a/mobile/functions.php
+++ b/mobile/functions.php
@@ -52,7 +52,6 @@
AND owner_uid = '$owner_uid') AS unread
FROM ttrss_feeds
WHERE
- ttrss_feeds.hidden = false AND
ttrss_feeds.owner_uid = '$owner_uid' AND
parent_feed IS NULL
ORDER BY $order_by $limit_qpart");
@@ -127,7 +126,6 @@
AND owner_uid = '$owner_uid') as unread
FROM ttrss_feeds
WHERE
- ttrss_feeds.hidden = false AND
ttrss_feeds.owner_uid = '$owner_uid' AND
parent_feed IS NULL AND
$cat_query
@@ -258,7 +256,6 @@
FROM ttrss_feed_categories, ttrss_feeds
WHERE ttrss_feed_categories.owner_uid = $owner_uid
AND ttrss_feed_categories.id = cat_id
- AND hidden = false
GROUP BY ttrss_feed_categories.id,
ttrss_feed_categories.title
ORDER BY ttrss_feed_categories.title");