diff options
| author | Andi Gutmans <andi@php.net> | 2000-03-10 16:36:30 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 2000-03-10 16:36:30 +0000 |
| commit | 5951b166c84bbec2bb4c66bca15f5d3c17766629 (patch) | |
| tree | 7d09a7ba362b2b9322d0e75e3664ccdae7aff05b /Zend/zend_execute_API.c | |
| parent | b5de395367bfe5ee06a66db9c58c59f4ff5df421 (diff) | |
| download | php-git-5951b166c84bbec2bb4c66bca15f5d3c17766629.tar.gz | |
- Quick way of supporting include_once().
Good enough for RC1.
Diffstat (limited to 'Zend/zend_execute_API.c')
| -rw-r--r-- | Zend/zend_execute_API.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index ee5485e14e..be10cb0606 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -115,7 +115,7 @@ void init_executor(CLS_D ELS_DC) EG(opline_ptr) = NULL; EG(garbage_ptr) = 0; - zend_hash_init(&EG(imported_files), 5, NULL, NULL, 0); + zend_hash_init(&EG(included_files), 5, NULL, NULL, 0); EG(ticks_count) = 0; } @@ -155,7 +155,7 @@ void shutdown_executor(ELS_D) #endif - zend_hash_destroy(&EG(imported_files)); + zend_hash_destroy(&EG(included_files)); } |
