From 6c5129c97b36ff46f1cd67000a82b572a775f046 Mon Sep 17 00:00:00 2001 From: andy Date: Mon, 6 Aug 2001 18:25:50 +0000 Subject: [PATCH] Added a missing semicolon to example script git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@53603 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/domxml.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/domxml.xml b/functions/domxml.xml index ec87b390d7..df414fbcaf 100644 --- a/functions/domxml.xml +++ b/functions/domxml.xml @@ -1,4 +1,4 @@ - + DOM XML functions DOM XML @@ -749,7 +749,7 @@ $root = $doc->add_root("HTML"); $head = $root->new_child("HEAD", ""); $head->new_child("TITLE", "Hier der Titel"); $head->set_attribute("Language", "ge"); -$children = $head->children() +$children = $head->children(); ?>