diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-12-05 18:30:10 -0500 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-12-05 18:30:10 -0500 |
commit | 6676577386c72d4a024c5c61a948589db8aaf9c7 (patch) | |
tree | c465f11d41998f11c9ad0c3fb07fa03cfe92ffbf /engine/lib | |
parent | 00b2501721a25acec48c9c9561844e2db86e39dd (diff) | |
download | elgg-6676577386c72d4a024c5c61a948589db8aaf9c7.tar.gz elgg-6676577386c72d4a024c5c61a948589db8aaf9c7.tar.bz2 |
Renamed XmlElement changes to ElggXMLElement. Fixed plugin manifest parsing.
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/xml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/xml.php b/engine/lib/xml.php index 4f1ae76a9..ff82d7e8a 100644 --- a/engine/lib/xml.php +++ b/engine/lib/xml.php @@ -107,5 +107,5 @@ function serialise_array_to_xml(array $data, $n = 0) { * @return object */ function xml_to_object($xml) { - return new XmlElement($xml); + return new ElggXMLElement($xml); } |