You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Simple, join a server with no MOTD and see!
2.
3.
What is the expected output? What do you see instead?
What version of the product are you using? On what operating system?
Please provide any additional information below.
Temp fix: Add the following function in IRCClient.php
private function err_nomotd($from, $command, $to, $param)
{
if (!empty($this->channel)) {
$this->join($this->channel);
}
foreach ($this->server_info as $key => $val) {
$key = htmlspecialchars($key,
ENT_QUOTES, 'UTF-8');
$val = htmlspecialchars($val,
ENT_QUOTES, 'UTF-8');
$this->send_script("chat.onServerInfo
('$key','$val');");
}
$this->send_script("chat.onMotd('MOTD File is missing');");
}
Original issue reported on code.google.com by [email protected] on 22 Aug 2007 at 10:26
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 22 Aug 2007 at 10:26The text was updated successfully, but these errors were encountered: