From 05ff5da32b8beb38c5d3a912b63ca3ae29b12736 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Tue, 14 Jan 2003 20:24:40 +0000 Subject: Migrated to C style comments. --- ext/soap/php_xml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/soap/php_xml.c') diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c index e3505e2890..7995356198 100644 --- a/ext/soap/php_xml.c +++ b/ext/soap/php_xml.c @@ -183,12 +183,12 @@ xmlNodePtr check_and_resolve_href(xmlNodePtr data) href = get_attribute(data->properties, "href"); if(href) { - // Internal href try and find node + /* Internal href try and find node */ if(href->children->content[0] == '#') { ret = get_node_with_attribute_recursive(data->doc->children, NULL, "id", &href->children->content[1]); } - // External href....? + /* External href....? */ } return ret; -- cgit v1.2.1