aboutsummaryrefslogtreecommitdiff
path: root/app/Models
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-05-10 14:08:25 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-05-10 14:08:25 +0200
commite6aeade47a2cbce576dd9beca73192ae2b28200c (patch)
tree5c3ac8ccdcd54dcd7a9d5815c9787d06dddb1348 /app/Models
parentb0cfbe3ff636ba7925876f633b206614d413f879 (diff)
parent0d0c6b7493161d350ca2eb1d4c45c0c70cfcbb92 (diff)
Merge remote-tracking branch 'origin/sql_hash_lastUpdate' into dev
Diffstat (limited to 'app/Models')
-rw-r--r--app/Models/ConfigurationSetter.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Models/ConfigurationSetter.php b/app/Models/ConfigurationSetter.php
index 7f433239c..4bd29ecb0 100644
--- a/app/Models/ConfigurationSetter.php
+++ b/app/Models/ConfigurationSetter.php
@@ -189,6 +189,10 @@ class FreshRSS_ConfigurationSetter {
$data['auto_remove_article'] = $this->handleBool($value);
}
+ private function _mark_updated_article_unread(&$data, $value) {
+ $data['mark_updated_article_unread'] = $this->handleBool($value);
+ }
+
private function _display_categories(&$data, $value) {
$data['display_categories'] = $this->handleBool($value);
}