the $params['channels'] don't accept values from forms by POST method. example:
//input from form
$txtChannel = $_POST["txt_channel"];
$params["channels"] = array("".$txtChannel."");
when i enter in chat, show me the message: "missing parameter (/join {channelname})".
but in debug, we can see the values printed properly:
[channels] => Array
(
[0] => roomName
)
[frozen_channels] => Array
(
[0] => roomName
)
i'm using version 1.0-final.
thanks.