From: Andrew Dolgov Date: Thu, 16 Dec 2010 06:47:12 +0000 (+0300) Subject: api: use is_cat in getArticles and catchupFeed for consistency with other methods X-Git-Tag: 1.5.0~3 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ee273da6fa99a5a6508ef23d64dddd1f77a3c9ca;p=tt-rss.git api: use is_cat in getArticles and catchupFeed for consistency with other methods --- diff --git a/api/index.php b/api/index.php index e396551d..53431f47 100644 --- a/api/index.php +++ b/api/index.php @@ -326,7 +326,7 @@ case "catchupFeed": $feed_id = db_escape_string($_REQUEST["feed_id"]); - $is_cat = db_escape_string($_REQUEST["category"]); + $is_cat = db_escape_string($_REQUEST["is_cat"]); catchup_feed($link, $feed_id, $is_cat); @@ -343,7 +343,7 @@ /* Method added for ttrss-reader for Android */ case "getArticles": - $isCategory = (int)db_escape_string($_REQUEST["is_category"]); + $isCategory = (int)db_escape_string($_REQUEST["is_cat"]); $id = (int)db_escape_string($_REQUEST["id"]); $displayUnread = (int)db_escape_string($_REQUEST["unread"]); $limit = (int)db_escape_string($_REQUEST["limit"]);