diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/classes/Planet.php | 8 | ||||
-rw-r--r-- | app/classes/PlanetConfig.php | 27 |
2 files changed, 4 insertions, 31 deletions
diff --git a/app/classes/Planet.php b/app/classes/Planet.php index d3e6149..402d2d0 100644 --- a/app/classes/Planet.php +++ b/app/classes/Planet.php @@ -159,7 +159,7 @@ class Planet public function download($max_load = 0.1) { $max_load_feeds = ceil(count($this->people) * $max_load); - $opml = OpmlManager::load(__DIR__.'/../../custom/people.opml'); + $opml = OpmlManager::load($this->config->getOpmlFile()); foreach ($this->people as $feed) { //Avoid mass loading with variable cache duration @@ -173,7 +173,7 @@ class Planet // Bypass remote's SSL/TLS certificate if the user explicitly // asked for it in the configuration. - if ($this->config->checkcerts === false) { + if (!$this->config->checkCertificates()) { $feed->set_curl_options([ CURLOPT_SSL_VERIFYHOST => false, CURLOPT_SSL_VERIFYPEER => false @@ -188,7 +188,7 @@ class Planet $items = $feed->get_items(); $this->items = array_merge($this->items, $items); } else { - $this->errors[] = new PlanetError(1, 'No items or down : ' . $feed->getFeed()); + $this->errors[] = new PlanetError(1, 'No items or down: ' . $feed->getFeed()); $isDown = '1'; } @@ -199,7 +199,7 @@ class Planet } } - OpmlManager::save($opml, __DIR__.'/../../custom/people.opml'); + OpmlManager::save($opml, $this->config->getOpmlFile()); } public function sort() diff --git a/app/classes/PlanetConfig.php b/app/classes/PlanetConfig.php index 179e25b..a13179b 100644 --- a/app/classes/PlanetConfig.php +++ b/app/classes/PlanetConfig.php @@ -128,38 +128,11 @@ class PlanetConfig return $this->conf['cache']; } - /** - * @deprecated - * @return mixed - */ - public function getShuffle() - { - return $this->conf['shuffle']; - } - public function getMaxDisplay() { return $this->conf['items']; } - /** - * @deprecated - * @return mixed - */ - public function getNoHTML() - { - return $this->conf['nohtml']; - } - - /** - * @deprecated - * @return mixed - */ - public function getPostMaxLength() - { - return $this->conf['postmaxlength']; - } - public function getCategories() { return $this->conf['categories']; |