From: Andrew Dolgov Date: Tue, 29 Nov 2011 05:54:21 +0000 (+0400) Subject: api: implement setting article note through updateArticle X-Git-Tag: 1.5.8~44 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=46d60592ad0829c2a3a2973f4fc327024c587fbe api: implement setting article note through updateArticle --- diff --git a/api/index.php b/api/index.php index 1c4c52fd..8aa4c190 100644 --- a/api/index.php +++ b/api/index.php @@ -228,6 +228,7 @@ case "updateArticle": $article_ids = array_filter(explode(",", db_escape_string($_REQUEST["article_ids"])), is_numeric); $mode = (int) db_escape_string($_REQUEST["mode"]); + $data = db_escape_string($_REQUEST["data"]); $field_raw = (int)db_escape_string($_REQUEST["field"]); $field = ""; @@ -243,6 +244,8 @@ case 2: $field = "unread"; break; + case 3: + $field = "note"; }; switch ($mode) { @@ -257,6 +260,8 @@ break; } + if ($field == "note") $set_to = "'$data'"; + if ($field && $set_to && count($article_ids) > 0) { $article_ids = join(", ", $article_ids);