Update of PicoFeed
This commit is contained in:
parent
b74b8dd784
commit
c55df61e21
@ -20,7 +20,7 @@ Features
|
||||
- Keyboard shortcuts (pressing '?' displays a pop-up listing the shortcuts; pressing 'q' closes it)
|
||||
- Basic bookmarks
|
||||
- Translated in English, French, German, Italian, Czech, Spanish, Portuguese and Simplified Chinese
|
||||
- RTL language support
|
||||
- RTL languages support
|
||||
- Themes support
|
||||
- Alternative login with a Google Account or Mozilla Persona
|
||||
- **Full article download for feeds that display only a summary** (website scraper based on Xpath rules)
|
||||
|
2
vendor/PicoFeed/Parsers/Rss10.php
vendored
2
vendor/PicoFeed/Parsers/Rss10.php
vendored
@ -22,6 +22,7 @@ class Rss10 extends \PicoFeed\Parser
|
||||
$this->title = $this->stripWhiteSpace((string) $xml->channel->title) ?: $this->url;
|
||||
$this->url = (string) $xml->channel->link;
|
||||
$this->id = $this->url;
|
||||
$this->language = '';
|
||||
|
||||
\PicoFeed\Logging::log(\get_called_class().': Title => '.$this->title);
|
||||
\PicoFeed\Logging::log(\get_called_class().': Url => '.$this->url);
|
||||
@ -42,6 +43,7 @@ class Rss10 extends \PicoFeed\Parser
|
||||
$item->author= '';
|
||||
$item->updated = '';
|
||||
$item->content = '';
|
||||
$item->language = '';
|
||||
|
||||
foreach ($namespaces as $name => $url) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user