1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

- Fixed start-up problem if both SPL and SimpleXML were enabled. The

double initialization of apache 1.3 was causing problems here.
This commit is contained in:
Derick Rethans
2004-02-12 23:39:46 +00:00
parent 1507a4a677
commit cd4a39edf9
2 changed files with 11 additions and 1 deletions
+2
View File
@@ -1,6 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, PHP 5 Release Candidate 1
- Fixed start-up problem if both SPL and SimpleXML were enabled. The double
initialization of apache 1.3 was causing problems here. (Marcus, Derick)
12 Feb 2004, PHP 5 Beta 4
- Changed exceptions so that they must now inherit from the built-in Exception
+9 -1
View File
@@ -1539,7 +1539,7 @@ zend_module_entry simplexml_module_entry = {
"simplexml",
simplexml_functions,
PHP_MINIT(simplexml),
NULL,
PHP_MSHUTDOWN(simplexml),
NULL,
NULL,
PHP_MINFO(simplexml),
@@ -1588,6 +1588,14 @@ PHP_MINIT_FUNCTION(simplexml)
}
/* }}} */
/* {{{ PHP_MSHUTDOWN_FUNCTION(simplexml)
*/
PHP_MSHUTDOWN_FUNCTION(simplexml)
{
sxe_class_entry = NULL;
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MINFO_FUNCTION(simplexml)
*/
PHP_MINFO_FUNCTION(simplexml)