summaryrefslogtreecommitdiff
path: root/mobile/feed.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-03-04 17:53:02 +0300
committerAndrew Dolgov <[email protected]>2011-03-04 17:53:02 +0300
commitcfad9259a6feacfa8194b1312770ae6db1ecce50 (patch)
tree8880d54026cabee2e7a48c7ab38ef42db0fd0ab8 /mobile/feed.php
parenta3ef7d106a9ee3c1be5e11f5f080508742162deb (diff)
mobile: allow showing category content inline (closes #315)
Diffstat (limited to 'mobile/feed.php')
-rw-r--r--mobile/feed.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mobile/feed.php b/mobile/feed.php
index 966e1b440..bd5804cca 100644
--- a/mobile/feed.php
+++ b/mobile/feed.php
@@ -24,7 +24,8 @@
$cat_id = db_escape_string($_REQUEST["cat"]);
$offset = (int) db_escape_string($_REQUEST["skip"]);
$search = db_escape_string($_REQUEST["search"]);
+ $is_cat = (bool) db_escape_string($_REQUEST["is_cat"]);
- render_headlines_list($link, $feed_id, $cat_id, $offset, $search);
+ render_headlines_list($link, $feed_id, $cat_id, $offset, $search, $is_cat);
?>