[Phpfreechat-svn] SF.net SVN: phpfreechat: [1017] trunk/src/commands/connect.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-04-17 20:19:40
|
Revision: 1017 http://svn.sourceforge.net/phpfreechat/?rev=1017&view=rev Author: kerphi Date: 2007-04-17 13:19:40 -0700 (Tue, 17 Apr 2007) Log Message: ----------- [en] Bug fix: private message tabs were lost when reloading the chat page [0h10] [fr] Bug fix : les onglets des messages priv?\195?\169s ?\195?\169taient perdus lorsque l'on rechargait le chat [0h10] Modified Paths: -------------- trunk/src/commands/connect.class.php Modified: trunk/src/commands/connect.class.php =================================================================== --- trunk/src/commands/connect.class.php 2007-04-16 17:00:15 UTC (rev 1016) +++ trunk/src/commands/connect.class.php 2007-04-17 20:19:40 UTC (rev 1017) @@ -75,7 +75,7 @@ { $cmdp = array(); $cmdp["param"] = $pvlist[$i]; - $cmd =& pfcCommand::Factory( $i < count($pvlist)-1 || !$joinoldchan ? 'join2' : 'join' ); + $cmd =& pfcCommand::Factory( $i < count($pvlist)-1 || !$joinoldchan ? 'privmsg2' : 'privmsg' ); $cmd->run($xml_reponse, $cmdp); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |