Revert "[TelegramBridge] Prevent double encoding entities (#1182)"
This reverts commit 5e2f0fb626
.
This commit is contained in:
parent
6baf64f29e
commit
c855d5089f
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ class TelegramBridge extends BridgeAbstract {
|
|||
$item = array();
|
||||
|
||||
$item['uri'] = $this->processUri($messageDiv);
|
||||
$item['content'] = html_entity_decode($this->processContent($messageDiv), ENT_QUOTES);
|
||||
$item['title'] = html_entity_decode($this->itemTitle, ENT_QUOTES);
|
||||
$item['content'] = $this->processContent($messageDiv);
|
||||
$item['title'] = $this->itemTitle;
|
||||
$item['timestamp'] = $this->processDate($messageDiv);
|
||||
$item['enclosures'] = $this->enclosures;
|
||||
$author = trim($messageDiv->find('a.tgme_widget_message_owner_name', 0)->plaintext);
|
||||
|
|
Loading…
Add table
Reference in a new issue