aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/Updater.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-03-11 14:11:06 +0100
committerArthurHoaro <arthur@hoa.ro>2017-03-11 14:13:58 +0100
commit2ea89aba4faa5509ca68c7e9b6b9ab71c1929935 (patch)
tree6131fcd04c045d6949e97a00ee70ad6505ecb646 /application/Updater.php
parent1739d6b314f410ee79d603f601f2845d55c48b4d (diff)
downloadShaarli-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/Updater.php')
-rw-r--r--application/Updater.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/application/Updater.php b/application/Updater.php
index fd7e2073..efbfc832 100644
--- a/application/Updater.php
+++ b/application/Updater.php
@@ -378,6 +378,22 @@ class Updater
378 378
379 $this->conf->set('plugins.PIWIK_URL', 'http://'. $this->conf->get('plugins.PIWIK_URL')); 379 $this->conf->set('plugins.PIWIK_URL', 'http://'. $this->conf->get('plugins.PIWIK_URL'));
380 $this->conf->write($this->isLoggedIn); 380 $this->conf->write($this->isLoggedIn);
381
382 return true;
383 }
384
385 /**
386 * Use ATOM feed as default.
387 */
388 public function updateMethodAtomDefault()
389 {
390 if (!$this->conf->exists('feed.show_atom') || $this->conf->get('feed.show_atom') === true) {
391 return true;
392 }
393
394 $this->conf->set('feed.show_atom', true);
395 $this->conf->write($this->isLoggedIn);
396
381 return true; 397 return true;
382 } 398 }
383} 399}