mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-08 04:54:42 +02:00
Add URI to ElloBridge elements.
This commit is contained in:
parent
6a98293fb3
commit
c4d489f018
1 changed files with 2 additions and 1 deletions
|
@ -45,9 +45,10 @@ class ElloBridge extends BridgeAbstract {
|
|||
$item = array();
|
||||
$item['author'] = $this->getUsername($post, $postData);
|
||||
$item['timestamp'] = strtotime($post->created_at);
|
||||
$item['title'] = $this->findText($post->summary);
|
||||
$item['title'] = strip_tags($this->findText($post->summary));
|
||||
$item['content'] = $this->getPostContent($post->body);
|
||||
$item['enclosures'] = $this->getEnclosures($post, $postData);
|
||||
$item['uri'] = self::URI . $item['author'] . '/post/' . $post->token;
|
||||
$content = $post->body;
|
||||
|
||||
$this->items[] = $item;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue