Browse Source

- Get rid of C++ comments

PHP-4.0.5
Andi Gutmans 26 years ago
parent
commit
5e5c59ebcb
  1. 4
      ext/domxml/php_domxml.c

4
ext/domxml/php_domxml.c

@ -1394,7 +1394,7 @@ static int node_children(zval **children, xmlNode *nodep)
xmlChar *content;
int ret;
// if(last->type != XML_TEXT_NODE) {
/* if(last->type != XML_TEXT_NODE) { */
/* Each child is a node object */
MAKE_STD_ZVAL(child);
ret = zend_list_insert(last, le_domxmlnodep);
@ -1428,7 +1428,7 @@ static int node_children(zval **children, xmlNode *nodep)
zend_hash_update(child->value.obj.properties, "children", sizeof("children"), (void *) &mchildren, sizeof(zval *), NULL);
count++;
// }
/* } */
last = last->next;
}
return count;

Loading…
Cancel
Save