diff options
author | Sterling Hughes <sterling@php.net> | 2003-06-29 18:26:23 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2003-06-29 18:26:23 +0000 |
commit | 681d6bfaebb661888496a5fe7ce080507b407727 (patch) | |
tree | f1a7d9023269539b1d72f16c25e60b2e76930246 /ext/xml | |
parent | 994c70ef20a4e9600902f5576c7627d9e367ccd0 (diff) | |
download | php-git-681d6bfaebb661888496a5fe7ce080507b407727.tar.gz |
fix libxml2 when dealing with character data
Diffstat (limited to 'ext/xml')
-rw-r--r-- | ext/xml/compat.c | 6 |
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 |