1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:45:55 +00:00

api: fix setArticleLabel expecting wrong format for label_id

This commit is contained in:
Andrew Dolgov
2013-10-12 09:55:35 +04:00
parent e44ea76268
commit 788cf0a1b1

View File

@@ -447,7 +447,7 @@ class API extends Handler {
$assign = (bool) $this->dbh->escape_string($_REQUEST['assign']) == "true";
$label = $this->dbh->escape_string(label_find_caption(
$label_id, $_SESSION["uid"]));
feed_to_label_id($label_id), $_SESSION["uid"]));
$num_updated = 0;