diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-08-24 12:28:35 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-08-24 12:28:35 +0100 |
commit | 6b3228fda452e3ff53b8b0bd87f74c6d5ceafa6d (patch) | |
tree | d76b0e0c8d959c757c0fe9f8eb4bff9a6f991b3d /sapi/phpdbg/phpdbg.h | |
parent | db5898c9e55b33c9378295a8a85aa863202996bc (diff) | |
download | php-git-6b3228fda452e3ff53b8b0bd87f74c6d5ceafa6d.tar.gz |
Fix oplog with eval()ed code
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r-- | sapi/phpdbg/phpdbg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index ed18e7ba55..01b0cbb3ca 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -265,6 +265,7 @@ ZEND_BEGIN_MODULE_GLOBALS(phpdbg) zend_op_array *(*compile_file)(zend_file_handle *file_handle, int type); zend_op_array *(*init_compile_file)(zend_file_handle *file_handle, int type); + zend_op_array *(*compile_string)(zval *source_string, char *filename); HashTable file_sources; FILE *oplog; /* opline log */ |