summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-14 21:00:36 +0400
committerAndrew Dolgov <[email protected]>2011-04-14 21:00:36 +0400
commita0e580b0ca6e42362e692240cd1193907b8b230b (patch)
tree15899699e39f1038ccf0df36fcdac36403d6dbd5 /api
parent133ab8c713b28e41c2628f02f176ef8b5a0b524d (diff)
api/getHeadlines: add include_attachments parameter
Diffstat (limited to 'api')
-rw-r--r--api/index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/api/index.php b/api/index.php
index ea267ca8e..01328b9a7 100644
--- a/api/index.php
+++ b/api/index.php
@@ -184,9 +184,11 @@
$show_content = (bool)db_escape_string($_REQUEST["show_content"]);
/* all_articles, unread, adaptive, marked, updated */
$view_mode = db_escape_string($_REQUEST["view_mode"]);
+ $include_attachments = (bool)db_escape_string($_REQUEST["include_attachments"]);
$headlines = api_get_headlines($link, $feed_id, $limit, $offset,
- $filter, $is_cat, $show_excerpt, $show_content, $view_mode, false);
+ $filter, $is_cat, $show_excerpt, $show_content, $view_mode, false,
+ $include_attachments);
print api_wrap_reply(API_STATUS_OK, $seq, $headlines);