diff options
| author | 2015-05-10 11:51:59 +0200 | |
|---|---|---|
| committer | 2015-05-10 11:51:59 +0200 | |
| commit | 7d1ebd3c23d8189adb522ccaf63a6f525bbe6ff2 (patch) | |
| tree | e47b4ce39e190788dcaa5be159ded1fc3dbdf63a /app/Models/ConfigurationSetter.php | |
| parent | f3aef1e59b872b2e8378c2852b1a5307706ed897 (diff) | |
| parent | fedf062b4942a1e30608b662f713f06a83a0565c (diff) | |
Merge branch 'FreshRSS/dev' into sql_hash_lastUpdate
Diffstat (limited to 'app/Models/ConfigurationSetter.php')
| -rw-r--r-- | app/Models/ConfigurationSetter.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Models/ConfigurationSetter.php b/app/Models/ConfigurationSetter.php index d7689752f..7f433239c 100644 --- a/app/Models/ConfigurationSetter.php +++ b/app/Models/ConfigurationSetter.php @@ -117,7 +117,9 @@ class FreshRSS_ConfigurationSetter { private function _queries(&$data, $values) { $data['queries'] = array(); foreach ($values as $value) { - $data['queries'][] = $value->toArray(); + if ($value instanceof FreshRSS_UserQuery) { + $data['queries'][] = $value->toArray(); + } } } |
