diff options
author | Andrey Hristov <andrey@php.net> | 2003-01-14 20:24:40 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2003-01-14 20:24:40 +0000 |
commit | 05ff5da32b8beb38c5d3a912b63ca3ae29b12736 (patch) | |
tree | 4a9daf9cc6f4029f191a95042a29f72559e3607c /ext/soap/php_xml.c | |
parent | 74e34d1657a6bd1fe1094d207a23833a5e34ae20 (diff) | |
download | php-git-05ff5da32b8beb38c5d3a912b63ca3ae29b12736.tar.gz |
Migrated to C style comments.
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; |