[Phpfreechat-svn] SF.net SVN: phpfreechat: [1040] trunk/data/public/js/pfcclient.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-06-30 17:34:40
|
Revision: 1040 http://svn.sourceforge.net/phpfreechat/?rev=1040&view=rev Author: kerphi Date: 2007-06-30 10:34:36 -0700 (Sat, 30 Jun 2007) Log Message: ----------- Bug fix: nicknames with spaces were broken when using the 'nick' parameter Bug fix : les pseudonymes avec des espaces ne fonctionnaient pas lorsque l'on utilisait le param?\195?\168tre 'nick' Modified Paths: -------------- trunk/data/public/js/pfcclient.js Modified: trunk/data/public/js/pfcclient.js =================================================================== --- trunk/data/public/js/pfcclient.js 2007-06-26 10:02:44 UTC (rev 1039) +++ trunk/data/public/js/pfcclient.js 2007-06-30 17:34:36 UTC (rev 1040) @@ -1475,7 +1475,7 @@ if (this.nickname == '') this.askNick(); else - this.sendRequest('/connect '+this.nickname); + this.sendRequest('/connect "'+this.nickname+'"'); } }, refresh_loginlogout: function() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |