diff options
author | Marcus Boerger <helly@php.net> | 2003-10-25 20:27:48 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-10-25 20:27:48 +0000 |
commit | 168f2ac78702933c7334d99cc23036604f1b3c45 (patch) | |
tree | 64ba1991be14da507fe0b7718cc9f41521d3fa36 /ext/simplexml/tests/002.phpt | |
parent | f67510a0d8ef9819915357350aaca0a82ae6b743 (diff) | |
download | php-git-168f2ac78702933c7334d99cc23036604f1b3c45.tar.gz |
Fix test
Diffstat (limited to 'ext/simplexml/tests/002.phpt')
-rw-r--r-- | ext/simplexml/tests/002.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/tests/002.phpt b/ext/simplexml/tests/002.phpt index 5cae43806b..98c1d27a46 100644 --- a/ext/simplexml/tests/002.phpt +++ b/ext/simplexml/tests/002.phpt @@ -7,7 +7,7 @@ SimpleXML and clone $sxe = simplexml_load_file(dirname(__FILE__).'/sxe.xml'); -$copy = $sxe->__clone; +$copy = $sxe->__clone(); print_r($copy); |