[Phpfreechat-svn] SF.net SVN: phpfreechat: [1016] trunk/data/public/js/pfcclient.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-04-16 17:00:18
|
Revision: 1016 http://svn.sourceforge.net/phpfreechat/?rev=1016&view=rev Author: kerphi Date: 2007-04-16 10:00:15 -0700 (Mon, 16 Apr 2007) Log Message: ----------- [en] Bug fix: nicknames with spaces at first connection were broken [fr] Bug fix : les pseudonymes avec des espaces entr?\195?\169s lors de la premi?\195?\168re connexion ne fonctionnaient pas Modified Paths: -------------- trunk/data/public/js/pfcclient.js Modified: trunk/data/public/js/pfcclient.js =================================================================== --- trunk/data/public/js/pfcclient.js 2007-04-13 11:42:00 UTC (rev 1015) +++ trunk/data/public/js/pfcclient.js 2007-04-16 17:00:15 UTC (rev 1016) @@ -150,7 +150,7 @@ if (this.isconnected) this.sendRequest('/nick "'+newnick+'"'); else - this.sendRequest('/connect '+newnick); + this.sendRequest('/connect "'+newnick+'"'); } }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |