summaryrefslogtreecommitdiff
path: root/framework/Web
diff options
context:
space:
mode:
authorxue <>2006-03-28 02:30:05 +0000
committerxue <>2006-03-28 02:30:05 +0000
commitabc3dd2c23ec1f2f2882bf2c4cec160dfc680f03 (patch)
treed201a3bd417b8378eccaefcad5663a0f52625fbf /framework/Web
parent84cd815b93ddbb19c3f1314b7135b1c373ce421c (diff)
Added variable dump functionality to replace var_dump and print_r.
Diffstat (limited to 'framework/Web')
-rw-r--r--framework/Web/UI/TTemplateControl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/TTemplateControl.php b/framework/Web/UI/TTemplateControl.php
index 2f63ae5e..971f0288 100644
--- a/framework/Web/UI/TTemplateControl.php
+++ b/framework/Web/UI/TTemplateControl.php
@@ -32,11 +32,11 @@ class TTemplateControl extends TControl implements INamingContainer
/**
* @var ITemplate the parsed template structure shared by the same control class
*/
- protected static $_template=array();
+ private static $_template=array();
/**
* @var ITemplate the parsed template structure specific for this control instance
*/
- protected $_localTemplate=null;
+ private $_localTemplate=null;
/**
* @var TTemplateControl the master control if any
*/