summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-05-03 21:31:19 +0000
committerfoobar <sniper@php.net>2002-05-03 21:31:19 +0000
commitd10a337f00884bee05754fecb75bdd3ea8f85a74 (patch)
tree8fc991e26f519d4d1d83fa67b8fac97396d690b3
parent43b21ea95fcbfa3a8627ed4ddeb52852aaac8005 (diff)
downloadphp-git-d10a337f00884bee05754fecb75bdd3ea8f85a74.tar.gz
MFH
-rw-r--r--NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 4008e40df1..64ff2799b8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,18 @@
PHP 4 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
05 May 2002, Version 4.2.1
+- Major update of domxml. New functions, better DOM compliance and bug fixes:
+ * Changed the old $node->append_child() to $node->append_sibling() since
+ the new append_child() behaves correctly (= W3C standard).
+ * Added domxml functions:
+ . domxml_elem_get_elements_by_tagname()
+ . domxml_doc_get_elements_by_tagname()
+ . domxml_doc_get_element_by_id()
+ . domxml_elem_remove_attribute()
+ . domxml_elem_get_attribute_node()
+ * Fixed a segfault in domxml_unlink().
+ * Added formatting option to domxml_dump_mem().
+ (Uwe, jtate, Chregu)
- Fixed a bug in socket_select() that could cause unexpected behavior when
using a statement like $w = $e = array($sock); This change unfortunately
prevents the use of constant values (e.g. NULL) for the socket array