diff options
| author | 2013-12-03 19:13:41 +0100 | |
|---|---|---|
| committer | 2013-12-03 19:13:41 +0100 | |
| commit | 0425432271fb709d94194cfd5ca922038c175573 (patch) | |
| tree | 668891d30d9a4e3568cbce9b8a2fdd982bf01872 /app/controllers/configureController.php | |
| parent | ed0535b0b0830066ae71b914eff2a5a31f575ec9 (diff) | |
Option pour marquer les articles comme lus dès la réception
https://github.com/marienfressinaud/FreshRSS/issues/237
https://github.com/marienfressinaud/FreshRSS/issues/309
Diffstat (limited to 'app/controllers/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index 68d798581..deec54a2b 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -171,6 +171,7 @@ class configureController extends ActionController { $openArticle = Request::param ('mark_open_article', 'no'); $openSite = Request::param ('mark_open_site', 'no'); $scroll = Request::param ('mark_scroll', 'no'); + $reception = Request::param ('mark_upon_reception', 'no'); $theme = Request::param ('theme', 'default'); $topline_read = Request::param ('topline_read', 'no'); $topline_favorite = Request::param ('topline_favorite', 'no'); @@ -200,6 +201,7 @@ class configureController extends ActionController { 'article' => $openArticle, 'site' => $openSite, 'scroll' => $scroll, + 'reception' => $reception, )); $this->view->conf->_theme ($theme); $this->view->conf->_topline_read ($topline_read); |
