File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2034,7 +2034,7 @@ PHP_FUNCTION(domxml_node_append_child)
2034
2034
* Uwe: must have been a temporary problem. It works for me with both
2035
2035
* xmlAddChildList and xmlAddChild
2036
2036
*/
2037
- // child = xmlAddSibling(nodep, new_child);
2037
+ /* child = xmlAddSibling(nodep, new_child);*/
2038
2038
child = xmlAddChild (nodep , new_child );
2039
2039
2040
2040
if (NULL == child ) {
@@ -2072,7 +2072,7 @@ PHP_FUNCTION(domxml_node_append_sibling)
2072
2072
RETURN_FALSE ;
2073
2073
}
2074
2074
2075
- // FIXME reverted xmlAddChildList; crashes
2075
+ /* FIXME reverted xmlAddChildList; crashes */
2076
2076
child = xmlAddSibling (nodep , new_child );
2077
2077
2078
2078
if (NULL == child ) {
@@ -2670,7 +2670,7 @@ PHP_FUNCTION(domxml_doc_get_element_by_id)
2670
2670
2671
2671
ids = (xmlHashTable * ) docp -> ids ;
2672
2672
if (ids ) {
2673
- iter .elementId = (xmlChar * )
2673
+ iter .elementId = (xmlChar * ) idname ;
2674
2674
iter .element = NULL ;
2675
2675
xmlHashScan (ids , idsHashScanner , & iter );
2676
2676
rv = php_domobject_new (iter .element , & retnode TSRMLS_CC );
You can’t perform that action at this time.
0 commit comments