mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-15 00:14:45 +02:00
[MozillaBugTrackerBridge] Fix incorrect newlines in feed title (#2298)
This commit is contained in:
parent
793c55f43d
commit
c445ba6ebb
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class MozillaBugTrackerBridge extends BridgeAbstract {
|
|||
defaultLinkTo($html, self::URI);
|
||||
|
||||
// Store header information into private members
|
||||
$this->bugid = $html->find('#field-value-bug_id', 0)->plaintext;
|
||||
$this->bugid = trim($html->find('#field-value-bug_id', 0)->plaintext);
|
||||
$this->bugdesc = $html->find('h1#field-value-short_desc', 0)->plaintext;
|
||||
|
||||
// Get and limit comments
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue