diff options
author | Zeev Suraski <zeev@php.net> | 2004-02-25 10:57:10 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-02-25 10:57:10 +0000 |
commit | eb6fd52e21919c3a78fe71c6a719af67b5a9ab1c (patch) | |
tree | bab01ef9983f16c90916fd884d8967494dc15ff6 /Zend/zend_globals.h | |
parent | ca64573e1b96527d56ba7e584a48533b497846bb (diff) | |
download | php-git-eb6fd52e21919c3a78fe71c6a719af67b5a9ab1c.tar.gz |
- Rename compatiblity mode to zend.ze2_compatibility_mode (it doesn't only affect auto-clone).
- Perform implementation checks even with simple inheritance (off when
compatibility mode is enabled).
- Restore default arguments in interfaces and handle it correctly.
- Move registration of internal classes later in the startup sequence
in order to have INI options available.
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 34f74a567c..ae38ffb7db 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -193,7 +193,7 @@ struct _zend_executor_globals { zend_bool in_autoload; zend_bool bailout_set; zend_bool full_tables_cleanup; - zend_bool implicit_clone; + zend_bool ze1_compatibility_mode; /* for extended information support */ zend_bool no_extensions; |