Subject: | Outgoing HTML messages broken (with fix) |
Hi,
DJabberd::BotContext has a bug in it related to outgoing HTML messages:
if ($html) {
$body .= qr{<html xmlns='http://jabber.org/protocol/xhtml-
im'><body xmlns='http://www.w3.org/1999/xhtml'>$html</body></html>};
}
This is a qr{}. It should be a qq{}. We get a stringified regex
entangled in our HTML which confuses a lot of Jabber clients. :)
Thanks,
Shawn