Merge branch 'wip-phpstan-level6' of git.tt-rss.org:fox/tt-rss into wip-phpstan-level6

This commit is contained in:
Andrew Dolgov 2021-11-16 09:19:19 +03:00
commit 4166628c36
1 changed files with 4 additions and 1 deletions

View File

@ -257,18 +257,21 @@ class Article extends Handler_Protected {
print "</ul>";
}*/
// TODO: dead code?
function assigntolabel(): void {
$this->_label_ops(true);
}
// TODO: dead code?
function removefromlabel(): void {
$this->_label_ops(false);
}
// TODO: dead code?
private function _label_ops(bool $assign): void {
$reply = array();
$ids = array_map("intval", explode(",", clean($_REQUEST["ids"] ?? [])));
$ids = array_map("intval", array_filter(explode(",", clean($_REQUEST["ids"] ?? "")), "strlen"));
$label_id = clean($_REQUEST["lid"]);
$label = Labels::find_caption($label_id, $_SESSION["uid"]);