summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2007-02-07 17:53:00 +0000
committerChristian Schneider2007-02-07 17:53:00 +0000
commite49941bbff3f9d7e87e26265b9971c788b861628 (patch)
tree4efe9b9b654a261acd71b4fe6287d47248d1c649
parentbfec203093200b30eceb92edae8b009bb62ad611 (diff)
downloaditools-e49941bbff3f9d7e87e26265b9971c788b861628.tar.gz
itools-e49941bbff3f9d7e87e26265b9971c788b861628.tar.bz2
itools-e49941bbff3f9d7e87e26265b9971c788b861628.zip
Reverted as it causes tel detail links to be empty, needs tel debugging
-rw-r--r--xml.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml.class b/xml.class
index ad4470c..8defa75 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 (isset($this->_stack[1]->$name))
+ else if (/*isset XXX NEEDS DEBUGGING for tel detail links */($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]);