From 63c8c8c45381c99390d109904eabb684fbdeda19 Mon Sep 17 00:00:00 2001 From: cyan <> Date: Thu, 18 May 2006 21:08:58 +0000 Subject: [PATCH] Fix line break problem in previous commit. --- exec/load/ircd_user.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exec/load/ircd_user.js b/exec/load/ircd_user.js index 771b6aaf87..7819da3a8e 100644 --- a/exec/load/ircd_user.js +++ b/exec/load/ircd_user.js @@ -863,8 +863,7 @@ function User_Work() { var str="NICK " + the_nick; this.bcast_to_uchans_unique(str); this.originatorout(str,this); - if (the_nick.toUpperCase() != this.nick.toUpperC -ase()) { + if (the_nick.toUpperCase() != this.nick.toUpperCase()) { this.created = time(); push_nickbuf(this.nick,the_nick); // move our Users entry over. -- GitLab