mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-02 06:39:14 +00:00
catchupSelected: pass ids in POST to prevent url size limit problems
This commit is contained in:
@@ -193,8 +193,8 @@
|
||||
/* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
|
||||
if ($subop == "catchupSelected") {
|
||||
|
||||
$ids = split(",", db_escape_string($_GET["ids"]));
|
||||
$cmode = sprintf("%d", $_GET["cmode"]);
|
||||
$ids = split(",", db_escape_string($_REQUEST["ids"]));
|
||||
$cmode = sprintf("%d", $_REQUEST["cmode"]);
|
||||
|
||||
catchupArticlesById($link, $ids, $cmode);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user