Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Porter <slug@qwebirc.org>2010-04-24 15:40:58 (GMT)
committer Chris Porter <slug@qwebirc.org>2010-04-24 15:40:58 (GMT)
commit7743ebc4bb11ce2e2e66461adee84b0aaea251a9 (patch)
treec364e038521ba87186ce66adbf768657149aa3ec
parentbf656fce558a9588f6eea8f35f6a1be4f2e99397 (diff)
Update CTCP copyright notice and fix CLIENTINFO to include WEBSITE.
-rw-r--r--js/irc/baseircclient.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/irc/baseircclient.js b/js/irc/baseircclient.js
index c4f3a3e..c03a27f 100644
--- a/js/irc/baseircclient.js
+++ b/js/irc/baseircclient.js
@@ -5,12 +5,12 @@ qwebirc.irc.PMODE_REGULAR_MODE = 3;
qwebirc.irc.RegisteredCTCPs = {
"VERSION": function(x) {
- return "qwebirc v" + qwebirc.VERSION + ", copyright (C) Chris Porter 2008-2009 -- " + qwebirc.util.browserVersion();
+ return "qwebirc v" + qwebirc.VERSION + ", copyright (C) 2008-2010 Chris Porter and the qwebirc project -- " + qwebirc.util.browserVersion();
},
"USERINFO": function(x) { return "qwebirc"; },
"TIME": function(x) { return qwebirc.irc.IRCDate(new Date()); },
"PING": function(x) { return x; },
- "CLIENTINFO": function(x) { return "PING VERSION TIME USERINFO CLIENTINFO"; },
+ "CLIENTINFO": function(x) { return "PING VERSION TIME USERINFO CLIENTINFO WEBSITE"; },
"WEBSITE": function(x) { return window == window.top ? "direct" : document.referrer; }
};