diff options
| author | 2022-06-25 11:15:51 +0200 | |
|---|---|---|
| committer | 2022-06-25 11:15:51 +0200 | |
| commit | d785ddde2a00a9eadd38c45c528f2d2f6d1c356a (patch) | |
| tree | 8583fb1a85a4a3da11a55c50fdbb0c521054d4c7 /app/Controllers/configureController.php | |
| parent | 07a52137a975978dab762ac8276fd85919497013 (diff) | |
New option to automatically mark as read gone articles (#4426)
* New option to automatically mark as read gone articles
Option to automatically and immediately mark as read entries / articles that are no longer provided in their upstream RSS / ATOM / XPath feed
* Reduce SQL queries
Optimisation: Perform cache update only once
Diffstat (limited to 'app/Controllers/configureController.php')
| -rwxr-xr-x | 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 a263db99c..76df3580b 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -121,6 +121,7 @@ class FreshRSS_configure_Controller extends FreshRSS_ActionController { FreshRSS_Context::$user_conf->sort_order = Minz_Request::param('sort_order', 'DESC'); FreshRSS_Context::$user_conf->mark_when = array( 'article' => Minz_Request::param('mark_open_article', false), + 'gone' => Minz_Request::param('read_upon_gone', false), 'max_n_unread' => Minz_Request::paramBoolean('enable_keep_max_n_unread') ? Minz_Request::param('keep_max_n_unread', false) : false, 'reception' => Minz_Request::param('mark_upon_reception', false), 'same_title_in_feed' => Minz_Request::paramBoolean('enable_read_when_same_title_in_feed') ? |
