mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
[NordbayernBridge] Fix linting issue (#2531)
This commit is contained in:
parent
b5ab2ee676
commit
32a6348418
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class NordbayernBridge extends BridgeAbstract {
|
|||
|
||||
$item['uri'] = $link;
|
||||
$item['author'] = $article->find('[class=article__author extrabold]', 0)->plaintext;
|
||||
$item['timestamp'] = strtotime(str_replace('Uhr','', $article->find('[class=article__release]',0)->plaintext));
|
||||
$item['timestamp'] = strtotime(str_replace('Uhr', '', $article->find('[class=article__release]', 0)->plaintext));
|
||||
if ($article->find('h2', 0) == null) {
|
||||
$item['title'] = $article->find('h3', 0)->innertext;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue