[Phpfreechat-svn] SF.net SVN: phpfreechat: [816] trunk/src/pfccommand.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-10-04 09:23:40
|
Revision: 816 http://svn.sourceforge.net/phpfreechat/?rev=816&view=rev Author: kerphi Date: 2006-10-04 02:23:21 -0700 (Wed, 04 Oct 2006) Log Message: ----------- [en] Bug fix : the user's metadata was not correctly updated when it was changed dynamicaly. [15min] [fr] Bug fix : les m?\195?\169ta donn?\195?\169es utilisateur n'?\195?\169taient pas correctement mise ?\195?\160 jour lorsqu'elle ?\195?\169taient chang?\195?\169es dynamiquement. [15min] Modified Paths: -------------- trunk/src/pfccommand.class.php Modified: trunk/src/pfccommand.class.php =================================================================== --- trunk/src/pfccommand.class.php 2006-10-03 19:19:22 UTC (rev 815) +++ trunk/src/pfccommand.class.php 2006-10-04 09:23:21 UTC (rev 816) @@ -150,7 +150,7 @@ $otherids = array(); foreach($channels as $chan) { - $ret = $ct->getOnlineNick($chan); + $ret = $ct->getOnlineNick($ct->decode($chan)); $otherids = array_merge($otherids, $ret['nickid']); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |