1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 06:15:54 +00:00

fix several warnings related to feed editor

This commit is contained in:
Andrew Dolgov
2021-02-08 11:46:43 +03:00
parent 43abc183ab
commit d293cbd5a9
2 changed files with 11 additions and 11 deletions

View File

@@ -159,8 +159,8 @@ class Af_Readability extends Plugin {
$enabled_feeds = $this->get_stored_array("enabled_feeds");
$append_feeds = $this->get_stored_array("append_feeds");
$enable = checkbox_to_sql_bool($_POST["af_readability_enabled"]);
$append = checkbox_to_sql_bool($_POST["af_readability_append"]);
$enable = checkbox_to_sql_bool($_POST["af_readability_enabled"] ?? "");
$append = checkbox_to_sql_bool($_POST["af_readability_append"] ?? "");
$enable_key = array_search($feed_id, $enabled_feeds);
$append_key = array_search($feed_id, $append_feeds);