summaryrefslogtreecommitdiff
path: root/xml.class
diff options
context:
space:
mode:
Diffstat (limited to 'xml.class')
-rw-r--r--xml.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml.class b/xml.class
index 7f07fe0..ad4470c 100644
--- a/xml.class
+++ b/xml.class
@@ -152,7 +152,7 @@ function end_element($parser, $name)
{
if (is_array($this->_stack[1]->$name))
array_push($this->_stack[1]->$name, &$this->_stack[0]);
- else if ($this->_stack[1]->$name)
+ else if (isset($this->_stack[1]->$name))
$this->_stack[1]->$name = array($this->_stack[1]->$name, &$this->_stack[0]);
else if (isset($this->_arrayforce[$name]))
$this->_stack[1]->$name = array(&$this->_stack[0]);