[Phpfreechat-svn] SF.net SVN: phpfreechat: [975] trunk/src/containers/file.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-02-20 13:47:43
|
Revision: 975 http://svn.sourceforge.net/phpfreechat/?rev=975&view=rev Author: kerphi Date: 2007-02-20 05:47:44 -0800 (Tue, 20 Feb 2007) Log Message: ----------- Bug fix : fix a "Call-time pass-by-reference has been deprecated " warning : http://www.phpfreechat.net/forum/viewtopic.php?id=1228 Modified Paths: -------------- trunk/src/containers/file.class.php Modified: trunk/src/containers/file.class.php =================================================================== --- trunk/src/containers/file.class.php 2007-02-20 13:43:18 UTC (rev 974) +++ trunk/src/containers/file.class.php 2007-02-20 13:47:44 UTC (rev 975) @@ -59,7 +59,7 @@ $errors = pfcContainerInterface::init($c); // generate the container parameters from other config parameters - $this->loadPaths(&$c); + $this->loadPaths($c); $errors = array_merge($errors, @test_writable_dir($c->container_cfg_chat_dir, "container_cfg_chat_dir")); $errors = array_merge($errors, @test_writable_dir($c->container_cfg_server_dir, "container_cfg_chat_dir/serverid")); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |