diff options
| author | 2024-07-24 19:37:30 +0200 | |
|---|---|---|
| committer | 2024-07-24 19:37:30 +0200 | |
| commit | a6d7bdc7426af55ffde71ab626a096a98f650974 (patch) | |
| tree | 38bd6086210364abb502c64d20b8106ed25cc0fe /app/Controllers | |
| parent | 3dca6ab1eef70e2e6fe19388238f7ec26f3c69af (diff) | |
New global option to automatically add articles to favourites (#6648)
fix https://github.com/FreshRSS/FreshRSS/issues/6639
Diffstat (limited to 'app/Controllers')
| -rw-r--r-- | app/Controllers/configureController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index 2ccc6fe42..a50cf1ef7 100644 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -150,6 +150,7 @@ class FreshRSS_configure_Controller extends FreshRSS_ActionController { 'focus' => Minz_Request::paramBoolean('mark_focus'), ]; FreshRSS_Context::userConf()->_filtersAction('read', Minz_Request::paramTextToArray('filteractions_read')); + FreshRSS_Context::userConf()->_filtersAction('star', Minz_Request::paramTextToArray('filteractions_star')); FreshRSS_Context::userConf()->save(); invalidateHttpCache(); |
