diff options
| author | 2020-01-16 17:11:04 +0100 | |
|---|---|---|
| committer | 2020-01-16 17:11:04 +0100 | |
| commit | 68863fbac8d0f9346eb3de17b079c84d5ead1b6c (patch) | |
| tree | 62c4e54997b8852a08194ee8cd84b0dee853435d /app/Models/ConfigurationSetter.php | |
| parent | d7ac234036a10f575a902af6fc63bb890f85c7b1 (diff) | |
Show Favorites as Unread (#2766)
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Co-authored-by: Marien Fressinaud <dev@marienfressinaud.fr>
Diffstat (limited to 'app/Models/ConfigurationSetter.php')
| -rw-r--r-- | app/Models/ConfigurationSetter.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Models/ConfigurationSetter.php b/app/Models/ConfigurationSetter.php index b1d271f41..75bbe4c2f 100644 --- a/app/Models/ConfigurationSetter.php +++ b/app/Models/ConfigurationSetter.php @@ -178,6 +178,10 @@ class FreshRSS_ConfigurationSetter { $data['show_nav_buttons'] = $this->handleBool($value); } + private function _show_fav_unread(&$data, $value) { + $data['show_fav_unread'] = $this->handleBool($value); + } + private function _display_categories(&$data, $value) { $data['display_categories'] = $this->handleBool($value); } |
