mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Migrated to C style comments.
This commit is contained in:
parent
74e34d1657
commit
05ff5da32b
6 changed files with 140 additions and 112 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue