[Cs-content-commits] SF.net SVN: cs-content:[431] trunk/1.0/contentSystem.class.php
PHP Templating & Includes System
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-08-12 15:40:55
|
Revision: 431 http://cs-content.svn.sourceforge.net/cs-content/?rev=431&view=rev Author: crazedsanity Date: 2009-08-12 15:40:46 +0000 (Wed, 12 Aug 2009) Log Message: ----------- Don't pass session object by reference, since it may be an overloaded object... Modified Paths: -------------- trunk/1.0/contentSystem.class.php Modified: trunk/1.0/contentSystem.class.php =================================================================== --- trunk/1.0/contentSystem.class.php 2009-08-12 15:10:23 UTC (rev 430) +++ trunk/1.0/contentSystem.class.php 2009-08-12 15:40:46 UTC (rev 431) @@ -792,7 +792,7 @@ } if(isset($this->session) && is_object($this->session)) { - $page->session =& $this->session; + $page->session = $this->session; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |