Skip to content

Commit

Permalink
Merge pull request #199 from FriendsOfREDAXO/tyrant88-patch-138
Browse files Browse the repository at this point in the history
Fix Title-Feld wurde nicht übernommen
  • Loading branch information
tyrant88 authored Sep 20, 2023
2 parents 4c89e92 + f5b4400 commit a014e20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/stream/rss.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function fetch()
/** @var Item $rssItem */
foreach ($result->getFeed() as $rssItem) {
$item = new rex_feeds_item($this->streamId, $rssItem->getPublicId());
$item->setTitle($item->getTitle());
$item->setTitle($rssItem->getTitle());
$item->setContentRaw($rssItem->getContent());
$item->setContent(strip_tags($rssItem->getContent()));
$item->setUrl($rssItem->getLink());
Expand Down
2 changes: 1 addition & 1 deletion package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: feeds
version: '4.0.5'
version: '4.0.6'
author: Friends Of REDAXO
supportpage: https://github.com/FriendsOfREDAXO/feeds

Expand Down

0 comments on commit a014e20

Please sign in to comment.