diff options
-rw-r--r-- | Zend/zend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index f04930aa23..2eda8d4665 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -429,8 +429,8 @@ static void register_standard_class(TSRMLS_D) static void zend_set_default_compile_time_values(TSRMLS_D) { /* default compile-time values */ -/* CG(asp_tags) = 0; - CG(short_tags) = 1; */ + CG(asp_tags) = 0; + CG(short_tags) = 1; CG(allow_call_time_pass_reference) = 1; CG(extended_info) = 0; } |