Changeset 2864

Show
Ignore:
Timestamp:
10/29/06 15:18:54 (7 years ago)
Author:
gregmac
Message:

Fixed bug with IRC nick generation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.2/irc/page.irc.php

    r2863 r2864  
    8787  var nick = null; 
    8888  nick = getCookie('ircnick'); 
    89   if (nick == 'null') nick = ''; 
    90    
     89  if (nick == null) nick = ''; 
    9190  nick = prompt("What nickname would you like to use? If you leave this blank, a nick will be automatically generated for you.", nick); 
    9291  if ((nick == null) || (nick == '')) {