summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2008-12-31 13:25:21 +0000
committerMarcus Boerger <helly@php.net>2008-12-31 13:25:21 +0000
commit8797aa99b70e0deaf126a9b10ba26b81bcdd3017 (patch)
tree4ed4404a968eabb13491a32e3de0af218a8c824b /Zend/zend_builtin_functions.c
parent7d9e04000cb04ed986233669bfe8ec5e0d6ffbd5 (diff)
downloadphp-git-8797aa99b70e0deaf126a9b10ba26b81bcdd3017.tar.gz
MFH
- Register engine classes when and where they should be - Show core module version as PHP version
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r--Zend/zend_builtin_functions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c
index 46d25d25a8..089073443b 100644
--- a/Zend/zend_builtin_functions.c
+++ b/Zend/zend_builtin_functions.c
@@ -292,6 +292,8 @@ ZEND_MINIT_FUNCTION(core) { /* {{{ */
INIT_CLASS_ENTRY(class_entry, "stdClass", NULL);
zend_standard_class_def = zend_register_internal_class(&class_entry TSRMLS_CC);
+ zend_register_default_classes(TSRMLS_C);
+
return SUCCESS;
}
/* }}} */