diff options
| author | 2015-05-10 14:04:12 +0200 | |
|---|---|---|
| committer | 2015-05-10 14:04:12 +0200 | |
| commit | 0d0c6b7493161d350ca2eb1d4c45c0c70cfcbb92 (patch) | |
| tree | 5c3ac8ccdcd54dcd7a9d5815c9787d06dddb1348 /app/Controllers/feedController.php | |
| parent | 5f545dfda2b6700579b856c815e1914a2dd62553 (diff) | |
Moved updated/unread option from global to user
https://github.com/FreshRSS/FreshRSS/issues/798
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 03f438888..a36a38ce2 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -343,7 +343,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { Minz_Log::debug('Entry with GUID `' . $entry->guid() . '` updated in feed ' . $feed->id() . ', old hash ' . $existingHash . ', new hash ' . $entry->hash()); //TODO: Make an updated/is_read policy by feed, in addition to the global one. - $entry->_isRead(FreshRSS_Context::$system_conf->mark_updated_article_unread ? false : null); //Change is_read according to policy. + $entry->_isRead(FreshRSS_Context::$user_conf->mark_updated_article_unread ? false : null); //Change is_read according to policy. if (!$entryDAO->hasTransaction()) { $entryDAO->beginTransaction(); } |
