Browse Source

- Fix an issue for parsing the incoming HTML messages

pull/16/head
Jaussoin Timothée 11 years ago
parent
commit
d8b0d2e93a
  1. 2
      app/models/message/Message.php

2
app/models/message/Message.php

@ -75,7 +75,7 @@ class Message extends Model {
if($stanza->html) {
$this->html = \cleanHTMLTags($stanza->html->body->asXML());
$this->html = \fixSelfClosing($m->html);
$this->html = \fixSelfClosing($this->html);
}
if($stanza->delay)

Loading…
Cancel
Save