From: Chris Porter Date: Thu, 2 Jul 2009 14:15:06 +0000 (+0100) Subject: Fix TIME typo, thanks thecainer. X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/commitdiff_plain/76261bd34ece56549600f3c4d7a7c8b892661a08 Fix TIME typo, thanks thecainer. --- diff --git a/js/irc/baseircclient.js b/js/irc/baseircclient.js index 654e5df..23056e9 100644 --- a/js/irc/baseircclient.js +++ b/js/irc/baseircclient.js @@ -3,7 +3,7 @@ qwebirc.irc.RegisteredCTCPs = { return "qwebirc v" + qwebirc.VERSION + ", copyright (C) Chris Porter 2008-2009 -- " + qwebirc.util.browserVersion(); }, "USERINFO": function(x) { return "qwebirc"; }, - "TIME": function(x) { return qwebirc.irc.IRCTime(new Date()); }, + "TIME": function(x) { return qwebirc.irc.IRCDate(new Date()); }, "PING": function(x) { return x; }, "CLIENTINFO": function(x) { return "PING VERSION TIME USERINFO CLIENTINFO"; } };