diff options
author | Hannes Magnusson <bjori@php.net> | 2009-06-11 09:41:15 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2009-06-11 09:41:15 +0000 |
commit | 4ed202e185300df008db6dcfcc541a8f81cc84ab (patch) | |
tree | e6e8ee7bfafa3ab499ff30c57922378305d72f82 | |
parent | 28c8d25dca97d0316458c86509301e948994f3db (diff) | |
download | php-git-4ed202e185300df008db6dcfcc541a8f81cc84ab.tar.gz |
MFH: Mark spl as required and fix extension loading order
# Not needed in 5.2 as the simplexmliterator is part of spl there
-rw-r--r-- | ext/simplexml/simplexml.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 941aeeb648..ca6d7cb4a8 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -2470,6 +2470,7 @@ const zend_function_entry simplexml_functions[] = { /* {{{ */ static const zend_module_dep simplexml_deps[] = { /* {{{ */ ZEND_MOD_REQUIRED("libxml") + ZEND_MOD_REQUIRED("spl") {NULL, NULL, NULL} }; /* }}} */ |