[CS-Project-svn_notify] SF.net SVN: cs-project:[981] trunk/1.2/includes/help.inc
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-09-21 02:37:22
|
Revision: 981 http://cs-project.svn.sourceforge.net/cs-project/?rev=981&view=rev Author: crazedsanity Date: 2009-09-21 02:37:15 +0000 (Mon, 21 Sep 2009) Log Message: ----------- Fixed an error with pass-by-reference and overloaded objects. Modified Paths: -------------- trunk/1.2/includes/help.inc Modified: trunk/1.2/includes/help.inc =================================================================== --- trunk/1.2/includes/help.inc 2009-09-17 15:40:28 UTC (rev 980) +++ trunk/1.2/includes/help.inc 2009-09-21 02:37:15 UTC (rev 981) @@ -9,7 +9,7 @@ $db = new cs_phpDB; $db->connect(get_config_db_params()); -$page->db = &$db; +$page->db = $db; #$titlePart = NULL; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |