fix phpstan warnings in classes/api.php
This commit is contained in:
parent
77b8dc7386
commit
a7983d475e
|
@ -356,7 +356,7 @@ class API extends Handler {
|
||||||
$article['content'] = Sanitizer::sanitize(
|
$article['content'] = Sanitizer::sanitize(
|
||||||
$entry->content,
|
$entry->content,
|
||||||
self::_param_to_bool($entry->hide_images),
|
self::_param_to_bool($entry->hide_images),
|
||||||
false, $entry->site_url, null, $entry->id);
|
null, $entry->site_url, null, $entry->id);
|
||||||
} else {
|
} else {
|
||||||
$article['content'] = $entry->content;
|
$article['content'] = $entry->content;
|
||||||
}
|
}
|
||||||
|
@ -485,9 +485,9 @@ class API extends Handler {
|
||||||
foreach ($article_ids as $id) {
|
foreach ($article_ids as $id) {
|
||||||
|
|
||||||
if ($assign)
|
if ($assign)
|
||||||
Labels::add_article($id, $label, $_SESSION["uid"]);
|
Labels::add_article((int)$id, $label, $_SESSION["uid"]);
|
||||||
else
|
else
|
||||||
Labels::remove_article($id, $label, $_SESSION["uid"]);
|
Labels::remove_article((int)$id, $label, $_SESSION["uid"]);
|
||||||
|
|
||||||
++$num_updated;
|
++$num_updated;
|
||||||
|
|
||||||
|
@ -756,7 +756,7 @@ class API extends Handler {
|
||||||
$headline_row["content"] = Sanitizer::sanitize(
|
$headline_row["content"] = Sanitizer::sanitize(
|
||||||
$line["content"],
|
$line["content"],
|
||||||
self::_param_to_bool($line['hide_images']),
|
self::_param_to_bool($line['hide_images']),
|
||||||
false, $line["site_url"], null, $line["id"]);
|
null, $line["site_url"], null, $line["id"]);
|
||||||
} else {
|
} else {
|
||||||
$headline_row["content"] = $line["content"];
|
$headline_row["content"] = $line["content"];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue