fix typo in xml

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6424 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
gwoo 2008-02-01 09:32:01 +00:00
parent 5fcf4c7bb3
commit 6e537beb73

View file

@ -1031,7 +1031,7 @@ class XML extends XmlNode {
class XmlElement extends XmlNode { class XmlElement extends XmlNode {
function __construct(&$parent, $name = null, $value = null, $attributes = array(), $namespace = false) { function __construct(&$parent, $name = null, $value = null, $attributes = array(), $namespace = false) {
parent::__construct(&$parent, $name, $value, $namespace); parent::__construct($parent, $name, $value, $namespace);
$this->addAttribute($attributes); $this->addAttribute($attributes);
} }