[KoreusBridge + VarietyBridge] Use HTTPS when fetching feedburner feeds (#1797)
This commit is contained in:
parent
645a8f62c6
commit
0a1ff10a52
2 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ class KoreusBridge extends FeedExpander {
|
||||||
|
|
||||||
const MAINTAINER = 'pit-fgfjiudghdf';
|
const MAINTAINER = 'pit-fgfjiudghdf';
|
||||||
const NAME = 'Koreus';
|
const NAME = 'Koreus';
|
||||||
const URI = 'http://www.koreus.com/';
|
const URI = 'https://www.koreus.com/';
|
||||||
const DESCRIPTION = 'Returns the newest posts from Koreus (full text)';
|
const DESCRIPTION = 'Returns the newest posts from Koreus (full text)';
|
||||||
|
|
||||||
protected function parseItem($item){
|
protected function parseItem($item){
|
||||||
|
@ -17,6 +17,6 @@ class KoreusBridge extends FeedExpander {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$this->collectExpandableDatas('http://feeds.feedburner.com/Koreus-articles');
|
$this->collectExpandableDatas('https://feeds.feedburner.com/Koreus-articles');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ class VarietyBridge extends FeedExpander {
|
||||||
const DESCRIPTION = 'RSS feed for Variety';
|
const DESCRIPTION = 'RSS feed for Variety';
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$this->collectExpandableDatas('http://feeds.feedburner.com/variety/headlines', 15);
|
$this->collectExpandableDatas('https://feeds.feedburner.com/variety/headlines', 15);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function parseItem($newsItem){
|
protected function parseItem($newsItem){
|
||||||
|
|
Loading…
Reference in a new issue