diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-03-11 14:11:06 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-03-11 14:13:58 +0100 |
commit | 2ea89aba4faa5509ca68c7e9b6b9ab71c1929935 (patch) | |
tree | 6131fcd04c045d6949e97a00ee70ad6505ecb646 /application/config/ConfigManager.php | |
parent | 1739d6b314f410ee79d603f601f2845d55c48b4d (diff) | |
download | Shaarli-2ea89aba4faa5509ca68c7e9b6b9ab71c1929935.tar.gz Shaarli-2ea89aba4faa5509ca68c7e9b6b9ab71c1929935.tar.zst Shaarli-2ea89aba4faa5509ca68c7e9b6b9ab71c1929935.zip |
Fixes #304: use atom feed as default
RSS feed is still available with the setting set to false
Diffstat (limited to 'application/config/ConfigManager.php')
-rw-r--r-- | application/config/ConfigManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/ConfigManager.php b/application/config/ConfigManager.php index f2097410..c5eeda08 100644 --- a/application/config/ConfigManager.php +++ b/application/config/ConfigManager.php | |||
@@ -317,7 +317,7 @@ class ConfigManager | |||
317 | $this->setEmpty('updates.check_updates_interval', 86400); | 317 | $this->setEmpty('updates.check_updates_interval', 86400); |
318 | 318 | ||
319 | $this->setEmpty('feed.rss_permalinks', true); | 319 | $this->setEmpty('feed.rss_permalinks', true); |
320 | $this->setEmpty('feed.show_atom', false); | 320 | $this->setEmpty('feed.show_atom', true); |
321 | 321 | ||
322 | $this->setEmpty('privacy.default_private_links', false); | 322 | $this->setEmpty('privacy.default_private_links', false); |
323 | $this->setEmpty('privacy.hide_public_links', false); | 323 | $this->setEmpty('privacy.hide_public_links', false); |