diff options
Diffstat (limited to 'framework/Data')
-rw-r--r-- | framework/Data/TXmlDocument.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/Data/TXmlDocument.php b/framework/Data/TXmlDocument.php index dfd65ebe..bb22b254 100644 --- a/framework/Data/TXmlDocument.php +++ b/framework/Data/TXmlDocument.php @@ -55,6 +55,7 @@ class TXmlElement extends TComponent */ public function __construct($tagName) { + parent::__construct(); $this->setTagName($tagName); } @@ -403,6 +404,7 @@ class TXmlElementList extends TList */ public function __construct(TXmlElement $owner) { + parent::__construct(); $this->_o=$owner; } |