diff options
author | xue <> | 2006-05-29 16:50:33 +0000 |
---|---|---|
committer | xue <> | 2006-05-29 16:50:33 +0000 |
commit | 7f508e187e4539a16cdbb1dd6a4b1133c53cf24d (patch) | |
tree | f3c47d2b436113407abaa99b2b70426c7a37a083 /framework/Xml/TXmlDocument.php | |
parent | 05869f23f798c9393e2bc6d310d56a97a11d1acd (diff) |
Blog now allows dynamically changing theme.
Diffstat (limited to 'framework/Xml/TXmlDocument.php')
-rw-r--r-- | framework/Xml/TXmlDocument.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Xml/TXmlDocument.php b/framework/Xml/TXmlDocument.php index 66f2f13b..62793cf4 100644 --- a/framework/Xml/TXmlDocument.php +++ b/framework/Xml/TXmlDocument.php @@ -35,11 +35,11 @@ class TXmlElement extends TComponent /** * @var string tagname of this element */ - private $_tagName; + private $_tagName='unknown'; /** * @var string text enclosed between openning and closing tags of this element */ - private $_value; + private $_value=''; /** * @var TXmlElementList list of child elements of this element */ |