[Phpxd-commits] CVS: phpXD/include element.php,1.2,1.3
Status: Beta
Brought to you by:
growbal
|
From: Thomas D. <th...@us...> - 2001-07-09 19:04:19
|
Update of /cvsroot/phpxd/phpXD/include
In directory usw-pr-cvs1:/tmp/cvs-serv2798
Modified Files:
element.php
Log Message:
Fixed Bug in getElementsByTagName.
Index: element.php
===================================================================
RCS file: /cvsroot/phpxd/phpXD/include/element.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** element.php 2001/06/28 22:24:23 1.2
--- element.php 2001/07/09 19:04:16 1.3
***************
*** 91,95 ****
{
$result = new NodeList();
! $this->getElementsByTagNameList($tagName, $this->firstChild, $result);
return $result;
}
--- 91,95 ----
{
$result = new NodeList();
! $this->getElementsByTagNameList($name, $this->firstChild, $result);
return $result;
}
|