1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +00:00

api/getHeadlines: add include_attachments parameter

This commit is contained in:
Andrew Dolgov
2011-04-14 21:00:36 +04:00
parent 133ab8c713
commit a0e580b0ca
2 changed files with 9 additions and 2 deletions

View File

@@ -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);