diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-04-04 00:42:42 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-04-04 00:42:42 +0000 |
commit | 17c0c49a54db2a5dd6dc2205d0e02978b3070bae (patch) | |
tree | e1bd13682153b272b30d64af86acfe605d34af97 /Zend/zend_compile.h | |
parent | a9ca51ff1aa4b444d842d5ad771bd6f0a65e5c5c (diff) | |
download | php-git-17c0c49a54db2a5dd6dc2205d0e02978b3070bae.tar.gz |
Addres limitation of __HALT_COMPILER() that allowed only one instance
per request.
# Patch by Greg Beaver
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 9aeba56912..cd177bb0d5 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -450,6 +450,7 @@ void zend_do_declare_class_constant(znode *var_name, znode *value TSRMLS_DC); void zend_do_fetch_property(znode *result, znode *object, znode *property TSRMLS_DC); +void zend_do_halt_compiler_register(TSRMLS_D); void zend_do_push_object(znode *object TSRMLS_DC); void zend_do_pop_object(znode *object TSRMLS_DC); |