diff options
Diffstat (limited to 'ext/soap/php_xml.c')
-rw-r--r-- | ext/soap/php_xml.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |