mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
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:
parent
5fcf4c7bb3
commit
6e537beb73
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue