From: Christian Stocker Date: Sun, 30 Nov 2003 11:13:00 +0000 (+0000) Subject: fixed typos X-Git-Tag: php-5.0.0b3RC1~491 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbc8f35778041f45e0ac1e117d45d3c1474a7114;p=php fixed typos --- diff --git a/ext/dom/examples/dom1.php b/ext/dom/examples/dom1.php index 99125a2a37..8ea367458d 100644 --- a/ext/dom/examples/dom1.php +++ b/ext/dom/examples/dom1.php @@ -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();