From 6ab221b3f6d3f6eb9183c555965a0dc10585f1a9 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Mon, 3 Nov 2003 13:50:43 +0000 Subject: [PATCH] remove attributes from this check --- ext/simplexml/simplexml.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index e7eafa32d9..464a77be26 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -368,15 +368,6 @@ sxe_property_exists(zval *object, zval *member, int check_empty TSRMLS_DC) GET_NODE(sxe, node); if (node) { - attr = node->properties; - while (attr) { - if (!xmlStrcmp(attr->name, name)) { - return 1; - } - - attr = attr->next; - } - node = node->children; while (node) { SKIP_TEXT(node); -- 2.50.1