[Phpxd-commits] CVS: phpXD/include/dom Node.php,1.1,1.2
Status: Beta
Brought to you by:
growbal
From: Thomas D. <th...@us...> - 2002-01-26 13:20:05
|
Update of /cvsroot/phpxd/phpXD/include/dom In directory usw-pr-cvs1:/tmp/cvs-serv12482/include/dom Modified Files: Node.php Log Message: Just started the implementation of a DTD parser. Index: Node.php =================================================================== RCS file: /cvsroot/phpxd/phpXD/include/dom/Node.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Node.php 2002/01/25 22:18:18 1.1 --- Node.php 2002/01/26 13:20:01 1.2 *************** *** 167,171 **** * @type Document */ ! var $ownerDocument; /** --- 167,171 ---- * @type Document */ ! var $ownerDocument = null; /** *************** *** 896,900 **** */ function checkDocument(&$child) { ! if (empty($child->ownerDocument)) { return 0; } --- 896,900 ---- */ function checkDocument(&$child) { ! if (($child->ownerDocument == null)) { return 0; } |