diff options
| author | 2019-08-14 15:16:06 +0200 | |
|---|---|---|
| committer | 2019-08-14 15:16:06 +0200 | |
| commit | cb318740851672292227b7376434451684ae0360 (patch) | |
| tree | 0602ba84df7900bb0873f4358a4b91712e7ad2f8 /app/Models/ConfigurationSetter.php | |
| parent | 49e1a2c579757994ae4ed5994339bd58a09238db (diff) | |
Added option to display authors under article titles (#2487)
This feature is particularly useful to display authors underneath scientific articles.
Diffstat (limited to 'app/Models/ConfigurationSetter.php')
| -rw-r--r-- | app/Models/ConfigurationSetter.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Models/ConfigurationSetter.php b/app/Models/ConfigurationSetter.php index ec6380df4..778513f17 100644 --- a/app/Models/ConfigurationSetter.php +++ b/app/Models/ConfigurationSetter.php @@ -257,6 +257,9 @@ class FreshRSS_ConfigurationSetter { private function _topline_read(&$data, $value) { $data['topline_read'] = $this->handleBool($value); } + private function _topline_display_authors(&$data, $value) { + $data['topline_display_authors'] = $this->handleBool($value); + } /** * The (not so long) list of setters for system configuration. |
