diff options
author | Felipe Pena <felipe@php.net> | 2010-04-26 00:13:34 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-04-26 00:13:34 +0000 |
commit | 0a6bcd44a72197bc8fb5658ce9fe4b46019ab9b3 (patch) | |
tree | b015404b606eda42e2573e7a412c9b5518c5fa0a /Zend/zend.c | |
parent | 7211284ac7f217694f2f351ec223f94af7db0d16 (diff) | |
download | php-git-0a6bcd44a72197bc8fb5658ce9fe4b46019ab9b3.tar.gz |
- Removed allow_call_time_pass_reference (Pierrick)
Diffstat (limited to 'Zend/zend.c')
-rw-r--r-- | Zend/zend.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index bd48e52223..0fbe847d80 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -442,12 +442,10 @@ static FILE *zend_fopen_wrapper(const char *filename, char **opened_path TSRMLS_ #ifdef ZTS static zend_bool asp_tags_default = 0; static zend_bool short_tags_default = 1; -static zend_bool ct_pass_ref_default = 1; static zend_uint compiler_options_default = ZEND_COMPILE_DEFAULT; #else # define asp_tags_default 0 # define short_tags_default 1 -# define ct_pass_ref_default 1 # define compiler_options_default ZEND_COMPILE_DEFAULT #endif @@ -456,7 +454,6 @@ static void zend_set_default_compile_time_values(TSRMLS_D) /* {{{ */ /* default compile-time values */ CG(asp_tags) = asp_tags_default; CG(short_tags) = short_tags_default; - CG(allow_call_time_pass_reference) = ct_pass_ref_default; CG(compiler_options) = compiler_options_default; } /* }}} */ @@ -744,7 +741,6 @@ void zend_post_startup(TSRMLS_D) /* {{{ */ asp_tags_default = CG(asp_tags); short_tags_default = CG(short_tags); - ct_pass_ref_default = CG(allow_call_time_pass_reference); compiler_options_default = CG(compiler_options); zend_destroy_rsrc_list(&EG(persistent_list) TSRMLS_CC); |