[Phpfreechat-svn] SF.net SVN: phpfreechat: [674] trunk/src/proxys
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-08-09 21:39:40
|
Revision: 674 Author: kerphi Date: 2006-08-09 14:39:32 -0700 (Wed, 09 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=674&view=rev Log Message: ----------- Bug fix: the parameters should not be passed with a & because in php pass-by-reference is setup in the methode prototype. (thanks to John Mario Cano) Modified Paths: -------------- trunk/src/proxys/auth.class.php trunk/src/proxys/censor.class.php trunk/src/proxys/lock.class.php trunk/src/proxys/noflood.class.php Modified: trunk/src/proxys/auth.class.php =================================================================== --- trunk/src/proxys/auth.class.php 2006-08-08 13:39:26 UTC (rev 673) +++ trunk/src/proxys/auth.class.php 2006-08-09 21:39:32 UTC (rev 674) @@ -104,7 +104,7 @@ $p["sender"] = $sender; $p["recipient"] = $recipient; $p["recipientid"] = $recipientid; - $this->next->run(&$xml_reponse, $p); + $this->next->run($xml_reponse, $p); } } Modified: trunk/src/proxys/censor.class.php =================================================================== --- trunk/src/proxys/censor.class.php 2006-08-08 13:39:26 UTC (rev 673) +++ trunk/src/proxys/censor.class.php 2006-08-09 21:39:32 UTC (rev 674) @@ -63,7 +63,7 @@ $p["sender"] = $sender; $p["recipient"] = $recipient; $p["recipientid"] = $recipientid; - $this->next->run(&$xml_reponse, $p); + $this->next->run($xml_reponse, $p); } } Modified: trunk/src/proxys/lock.class.php =================================================================== --- trunk/src/proxys/lock.class.php 2006-08-08 13:39:26 UTC (rev 673) +++ trunk/src/proxys/lock.class.php 2006-08-09 21:39:32 UTC (rev 674) @@ -54,7 +54,7 @@ $p["sender"] = $sender; $p["recipient"] = $recipient; $p["recipientid"] = $recipientid; - $this->next->run(&$xml_reponse, $p); + $this->next->run($xml_reponse, $p); } } } Modified: trunk/src/proxys/noflood.class.php =================================================================== --- trunk/src/proxys/noflood.class.php 2006-08-08 13:39:26 UTC (rev 673) +++ trunk/src/proxys/noflood.class.php 2006-08-09 21:39:32 UTC (rev 674) @@ -82,7 +82,7 @@ $p["sender"] = $sender; $p["recipient"] = $recipient; $p["recipientid"] = $recipientid; - $this->next->run(&$xml_reponse, $p); + $this->next->run($xml_reponse, $p); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |