more fixes to the ctcp regex

This commit is contained in:
rginda%netscape.com 2000-01-27 10:13:27 +00:00
parent 4c4b7e0635
commit 8305c6104f

View File

@ -1144,8 +1144,10 @@ function serv_privmsg (e)
CIRCServer.prototype.onCTCP =
function serv_ctcp (e)
{
var ary = e.meat.match (/^\x01(\S+) ?(.*)?\x01$/i);
var ary = e.meat.match (/^\x01(\S+) ?(.*)\x01$/i);
dd (ary);
if (ary == null)
return false;