From 4ed202e185300df008db6dcfcc541a8f81cc84ab Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Thu, 11 Jun 2009 09:41:15 +0000 Subject: [PATCH] MFH: Mark spl as required and fix extension loading order # Not needed in 5.2 as the simplexmliterator is part of spl there --- ext/simplexml/simplexml.c | 1 + 1 file changed, 1 insertion(+) 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} }; /* }}} */ -- 2.50.1