summaryrefslogtreecommitdiff
path: root/ext/xml
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2003-06-29 18:26:23 +0000
committerSterling Hughes <sterling@php.net>2003-06-29 18:26:23 +0000
commit681d6bfaebb661888496a5fe7ce080507b407727 (patch)
treef1a7d9023269539b1d72f16c25e60b2e76930246 /ext/xml
parent994c70ef20a4e9600902f5576c7627d9e367ccd0 (diff)
downloadphp-git-681d6bfaebb661888496a5fe7ce080507b407727.tar.gz
fix libxml2 when dealing with character data
Diffstat (limited to 'ext/xml')
-rw-r--r--ext/xml/compat.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/xml/compat.c b/ext/xml/compat.c
index c638a0085f..e8f0cf19c4 100644
--- a/ext/xml/compat.c
+++ b/ext/xml/compat.c
@@ -273,7 +273,11 @@ php_xml_compat_handlers = {
_comment_handler, /* comment */
NULL, /* warning */
NULL, /* error */
- NULL /* fatalError */
+ NULL, /* fatalError */
+ NULL, /* getParameterEntity */
+ _cdata_handler, /* cdataBlock */
+ NULL, /* externalSubset */
+ 1
};
XML_Parser