[Phpfreechat-svn] SF.net SVN: phpfreechat: [1099] trunk/src/pfccontainer.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-08-08 07:08:20
|
Revision: 1099 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1099&view=rev Author: kerphi Date: 2007-08-08 00:08:23 -0700 (Wed, 08 Aug 2007) Log Message: ----------- remove users commands in queue when user disconnected from all the channels Modified Paths: -------------- trunk/src/pfccontainer.class.php Modified: trunk/src/pfccontainer.class.php =================================================================== --- trunk/src/pfccontainer.class.php 2007-08-08 03:39:04 UTC (rev 1098) +++ trunk/src/pfccontainer.class.php 2007-08-08 07:08:23 UTC (rev 1099) @@ -195,12 +195,11 @@ $this->rmMeta('metadata-to-nickid', 'nick', $this->encode($this->getNickname($nickid))); // remove disconnected nickname metadata $this->rmMeta('nickid-to-metadata', $nickid); + // remove users commands in queue + $this->rmMeta("nickid-to-cmdtoplay", $nickid); + $this->rmMeta("nickid-to-cmdtoplayid", $nickid); } - // remove users commands in queue - $this->rmMeta("nickid-to-cmdtoplay", $nickid); - $this->rmMeta("nickid-to-cmdtoplayid", $nickid); - return $deleted_user; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |