summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 23:45:06 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 23:45:06 +0200
commitfb28fadcf6e71b4b797aa4241436ec3add543ba0 (patch)
tree01b2e19338badfa89be45c8a90c4b391b8cd6119 /config
parent976cd93e3c9aef7734792ba6b53f15621c5b6c91 (diff)
get rid of faviconfetcher and use picofeed
Diffstat (limited to 'config')
-rw-r--r--config/config.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/config/config.php b/config/config.php
index 44650c3ac..73a930f97 100644
--- a/config/config.php
+++ b/config/config.php
@@ -24,7 +24,7 @@ class Config {
// should still be kept for an
// undo actions
private $autoPurgeCount; // number of allowed unread articles per feed
- private $simplePieCacheDuration; // seconds
+ private $cacheDuration; // seconds
private $feedFetcherTimeout; // seconds
private $useCronUpdates; // turn off updates run by owncloud cronjob
private $proxyHost;
@@ -39,7 +39,7 @@ class Config {
$this->fileSystem = $fileSystem;
$this->autoPurgeMinimumInterval = 60;
$this->autoPurgeCount = 200;
- $this->simplePieCacheDuration = 30*60;
+ $this->cacheDuration = 30*60;
$this->feedFetcherTimeout = 60;
$this->useCronUpdates = true;
$this->logger = $logger;
@@ -88,8 +88,8 @@ class Config {
}
- public function getSimplePieCacheDuration() {
- return $this->simplePieCacheDuration;
+ public function getCacheDuration() {
+ return $this->cacheDuration;
}
@@ -113,8 +113,8 @@ class Config {
}
- public function setSimplePieCacheDuration($value) {
- $this->simplePieCacheDuration = $value;
+ public function setCacheDuration($value) {
+ $this->cacheDuration = $value;
}
@@ -187,8 +187,8 @@ class Config {
$this->autoPurgeMinimumInterval . "\n" .
'autoPurgeCount = ' .
$this->autoPurgeCount . "\n" .
- 'simplePieCacheDuration = ' .
- $this->simplePieCacheDuration . "\n" .
+ 'cacheDuration = ' .
+ $this->cacheDuration . "\n" .
'feedFetcherTimeout = ' .
$this->feedFetcherTimeout . "\n" .
'useCronUpdates = ' .