fixed typos

This commit is contained in:
Christian Stocker 2003-11-30 11:13:00 +00:00
parent 8b315dddd4
commit fbc8f35778

View File

@ -80,8 +80,8 @@ $children = $rootnode->getElementsByTagName("Silly");
print_node_list($children);
echo "--------- Unlink Node\n";
print_node($children.item(0));
$rootnode->removeChild($children.item(0));
print_node($children->item(0));
$rootnode->removeChild($children->item(0));
print_node_list($rootnode->childNodes);
print $dom->savexml();