diff options
author | Jani Taskinen <jani@php.net> | 2009-08-03 18:15:30 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-08-03 18:15:30 +0000 |
commit | 08f8621a9f46a42c0f1b134fd7e4f2f7a3c296c8 (patch) | |
tree | 178c63d7ea8bfbeb3709a49242f7db8bc6da81d8 /ext/zlib | |
parent | d744463d3321d4451caa6cc3edcdd265fb042ac1 (diff) | |
download | php-git-08f8621a9f46a42c0f1b134fd7e4f2f7a3c296c8.tar.gz |
- Fixed bug #48994 (zlib.output_compression does not ouput HTTP headers when set to a string value)
# also fixes bug #35936 (ini.zlib.output-compression Documentation :)
Diffstat (limited to 'ext/zlib')
-rw-r--r-- | ext/zlib/php_zlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index 1a2d3a4bf3..a7ef59a9de 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -35,6 +35,8 @@ ZEND_BEGIN_MODULE_GLOBALS(zlib) char *output_handler; ZEND_END_MODULE_GLOBALS(zlib) +PHPAPI ZEND_EXTERN_MODULE_GLOBALS(zlib) + extern php_stream_filter_factory php_zlib_filter_factory; extern zend_module_entry php_zlib_module_entry; #define zlib_module_ptr &php_zlib_module_entry |