summaryrefslogtreecommitdiff
path: root/ext/standard
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-06-30 13:43:00 +0000
committerDmitry Stogov <dmitry@php.net>2005-06-30 13:43:00 +0000
commit2ca2dc0b08f4db34233afa0a173446bb3767b95b (patch)
tree2ef9d967dad51eb9183c2077408312835179ef42 /ext/standard
parent9518bae116bbee9d25ae6d02fefe9cb025e996af (diff)
downloadphp-git-2ca2dc0b08f4db34233afa0a173446bb3767b95b.tar.gz
Restored old behavior of zend_statup_module()
Diffstat (limited to 'ext/standard')
-rw-r--r--ext/standard/dl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c
index 5d83fc7451..65cc533b61 100644
--- a/ext/standard/dl.c
+++ b/ext/standard/dl.c
@@ -224,7 +224,7 @@ void php_dl(zval *file, int type, zval *return_value TSRMLS_DC)
RETURN_FALSE;
}
- if (type == MODULE_TEMPORARY && zend_startup_module(module_entry TSRMLS_CC) == FAILURE) {
+ if (type == MODULE_TEMPORARY && zend_startup_module_ex(module_entry TSRMLS_CC) == FAILURE) {
DL_UNLOAD(handle);
RETURN_FALSE;
}