diff options
author | gnits <github@devworx.hu> | 2014-04-11 23:55:47 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2014-08-21 17:32:53 +0200 |
commit | 193d477fb6ddd8d4ddda97d7e74bae4eb2d8b4ab (patch) | |
tree | ebdc1f6df93213742fc1616edc8f1a26f2bf3876 /framework | |
parent | 33f2359f4375852dd92ef43f0f02dc4faad21e7f (diff) |
TXmlDocument::buildElement visibility changed
This allows derived classes to override the method's implementation
(cherry picked from commit 69f6eddaba7425392e5d0f7893155390eda244fc)
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Xml/TXmlDocument.php | 2 |
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); |