[Phpfreechat-svn] SF.net SVN: phpfreechat: [940] trunk/src/proxies/auth.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-01-31 09:15:15
|
Revision: 940 http://svn.sourceforge.net/phpfreechat/?rev=940&view=rev Author: kerphi Date: 2007-01-31 01:15:15 -0800 (Wed, 31 Jan 2007) Log Message: ----------- [en] Bug fix: don't allow to join restricted channels with /join2 command (thanks to datacompboy) [0h15] [fr] Bug fix : on n'autorise pas de rejoindre les salons n'ayant pas la mention frozen_channels avec la command /join2 (merci ?\195?\160 datacompboy) [0h15] Modified Paths: -------------- trunk/src/proxies/auth.class.php Modified: trunk/src/proxies/auth.class.php =================================================================== --- trunk/src/proxies/auth.class.php 2007-01-31 09:11:44 UTC (rev 939) +++ trunk/src/proxies/auth.class.php 2007-01-31 09:15:15 UTC (rev 940) @@ -56,7 +56,8 @@ } // channels protection - if ($this->name == "join") + if ($this->name == "join" || + $this->name == "join2") { $container =& $c->getContainerInstance(); $channame = $param; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |