summaryrefslogtreecommitdiff
path: root/framework/Xml/TXmlDocument.php
diff options
context:
space:
mode:
authorgnits <github@devworx.hu>2014-04-11 23:55:47 +0200
committergnits <github@devworx.hu>2014-04-11 23:55:47 +0200
commit69f6eddaba7425392e5d0f7893155390eda244fc (patch)
treeafb8a457f4bbc82f32c4d3324996daf13564d5cf /framework/Xml/TXmlDocument.php
parent3fd4d5524cdfdc85a0f48671b14629053f7593f0 (diff)
TXmlDocument::buildElement visibility changed
This allows derived classes to override the method's implementation
Diffstat (limited to 'framework/Xml/TXmlDocument.php')
-rw-r--r--framework/Xml/TXmlDocument.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Xml/TXmlDocument.php b/framework/Xml/TXmlDocument.php
index 74e971bb..69017660 100644
--- a/framework/Xml/TXmlDocument.php
+++ b/framework/Xml/TXmlDocument.php
@@ -475,7 +475,7 @@ class TXmlDocument extends TXmlElement
* @param DOMXmlNode the node to be converted
* @return TXmlElement the converted TXmlElement
*/
- private function buildElement($node)
+ protected function buildElement($node)
{
$element=new TXmlElement($node->tagName);
$element->setValue($node->nodeValue);