summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 8bfbccc337..d58391ccd7 100644
--- a/ext/domxml/php_domxml.c
+++ b/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;