mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 17:15:25 +03:00
[InstituteForTheStudyOfWarBridge] Do not put HTML tags into title (#2985)
This commit is contained in:
parent
c079dbb521
commit
1ca4dd69f7
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class InstituteForTheStudyOfWarBridge extends BridgeAbstract
|
|||
private function processEntry($entry)
|
||||
{
|
||||
$h2 = $entry->find('h2', 0);
|
||||
$title = $h2->innertext;
|
||||
$title = $h2->plaintext;
|
||||
$uri = $h2->find('a', 0)->href;
|
||||
|
||||
$date_span = $entry->find('span.datespan', 0);
|
||||
|
|
Loading…
Reference in a new issue