mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-29 12:50:18 +02:00
[WordPress] Fix indentation and remove empty lines
This commit is contained in:
@@ -21,7 +21,6 @@ class WordPressBridge extends BridgeAbstract {
|
|||||||
"identifier" : "url"
|
"identifier" : "url"
|
||||||
}
|
}
|
||||||
]';
|
]';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the content type for a given html dom
|
// Returns the content type for a given html dom
|
||||||
@@ -73,10 +72,10 @@ class WordPressBridge extends BridgeAbstract {
|
|||||||
else
|
else
|
||||||
$posts = $html->find('entry');
|
$posts = $html->find('entry');
|
||||||
|
|
||||||
|
|
||||||
if(!empty($posts) ) {
|
if(!empty($posts) ) {
|
||||||
$this->name = $html->find('title', 0)->plaintext;
|
$this->name = $html->find('title', 0)->plaintext;
|
||||||
$i=0;
|
$i=0;
|
||||||
|
|
||||||
foreach ($posts as $article) {
|
foreach ($posts as $article) {
|
||||||
if($i < 3) {
|
if($i < 3) {
|
||||||
|
|
||||||
@@ -110,8 +109,7 @@ class WordPressBridge extends BridgeAbstract {
|
|||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$this->returnError("Sorry, {$this->url} doesn't seem to be a Wordpress blog.", 404);
|
$this->returnError("Sorry, {$this->url} doesn't seem to be a Wordpress blog.", 404);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -138,6 +136,4 @@ class WordPressBridge extends BridgeAbstract {
|
|||||||
private function processParams($param) {
|
private function processParams($param) {
|
||||||
$this->url = $param['url'];
|
$this->url = $param['url'];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user