[Cs-content-commits] SF.net SVN: cs-content:[434] trunk/1.0/cs_genericPage.class.php
PHP Templating & Includes System
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-08-13 18:40:32
|
Revision: 434 http://cs-content.svn.sourceforge.net/cs-content/?rev=434&view=rev Author: crazedsanity Date: 2009-08-13 18:40:21 +0000 (Thu, 13 Aug 2009) Log Message: ----------- Initialize templateRows to avoid certain errors... Modified Paths: -------------- trunk/1.0/cs_genericPage.class.php Modified: trunk/1.0/cs_genericPage.class.php =================================================================== --- trunk/1.0/cs_genericPage.class.php 2009-08-13 15:24:06 UTC (rev 433) +++ trunk/1.0/cs_genericPage.class.php 2009-08-13 18:40:21 UTC (rev 434) @@ -13,6 +13,7 @@ class cs_genericPage extends cs_contentAbstract { public $templateObj; //template object to parse the pages public $templateVars = array(); //our copy of the global templateVars + public $templateRows = array(); //array of block rows & their contents. public $mainTemplate; //the default layout of the site public $unhandledVars=array(); public $printOnFinish=true; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |