diff options
| author | 2015-01-18 13:04:08 +0100 | |
|---|---|---|
| committer | 2015-01-18 13:04:08 +0100 | |
| commit | 711ef5546cd218f81595e6e3b479b929ffeb3bc7 (patch) | |
| tree | c231c2c930612debef56a5ffbad255558466b572 | |
| parent | 517d5aa9c52694b21f66d429085348d2e4fd10d2 (diff) | |
Fix mark_when setter
mark_when was not taken in consideration.
| -rw-r--r-- | app/Models/ConfigurationSetter.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/Models/ConfigurationSetter.php b/app/Models/ConfigurationSetter.php index 7fd0836c1..eeb1f2f4c 100644 --- a/app/Models/ConfigurationSetter.php +++ b/app/Models/ConfigurationSetter.php @@ -210,9 +210,7 @@ class FreshRSS_ConfigurationSetter { private function _mark_when(&$data, $values) { foreach ($values as $key => $value) { - if (isset($data['mark_when'][$key])) { - $data['mark_when'][$key] = $this->handleBool($value); - } + $data['mark_when'][$key] = $this->handleBool($value); } } |
