mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-16 15:19:55 +03:00
[PresidenciaPTBridge]: Fix timestamp search (#3459)
This commit is contained in:
parent
d4bc63ee98
commit
bd6f56383c
1 changed files with 2 additions and 2 deletions
|
@ -62,8 +62,8 @@ class PresidenciaPTBridge extends BridgeAbstract
|
|||
|
||||
$link = $element->find('a', 0);
|
||||
$etitle = $element->find('.article-title', 0);
|
||||
$edts = $element->find('p', 1);
|
||||
$edt = html_entity_decode($edts->innertext, ENT_HTML5);
|
||||
$edts = $element->find('.date', 0);
|
||||
$edt = $edts->innertext;
|
||||
|
||||
$item['title'] = strip_tags($etitle->innertext);
|
||||
$item['uri'] = self::URI . $link->href;
|
||||
|
|
Loading…
Add table
Reference in a new issue