diff options
author | Andi Gutmans <andi@php.net> | 2002-10-07 21:20:23 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-10-07 21:20:23 +0000 |
commit | 7cba0254e7aaecc9c5b23368533c2f5ef3a198fa (patch) | |
tree | 27efc2c0b5593fd732b31907980f25079e9e3821 /Zend/zend_globals.h | |
parent | 74286bd28dd977af556a8f1c2e2befea25b19156 (diff) | |
download | php-git-7cba0254e7aaecc9c5b23368533c2f5ef3a198fa.tar.gz |
- Allow access to private/protected variables of $clone inside the __clone()
- method
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 6711c80342..12311fdb97 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -119,6 +119,7 @@ struct _zend_compiler_globals { int interactive; + zend_bool in_clone_method; zend_bool increment_lineno; zend_llist import_commands; |