diff options
author | Xinchen Hui <laruence@php.net> | 2014-12-17 11:52:19 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-12-17 11:52:19 +0800 |
commit | cfc8b57342542ab31795cf880ab638b9ca9bacff (patch) | |
tree | a33f4a6d8ce11e543bb1c3e6cd98617d0d873426 /sapi/apache2handler/php_functions.c | |
parent | 3753e6d978bf94f5cad39c0f9d03f237866cac05 (diff) | |
parent | 8b0deb8cd2d54fb9f786a87feb95ee2a00771f6f (diff) | |
download | php-git-cfc8b57342542ab31795cf880ab638b9ca9bacff.tar.gz |
Merge branch 'master' of https://git.php.net/repository/php-src
Diffstat (limited to 'sapi/apache2handler/php_functions.c')
-rw-r--r-- | sapi/apache2handler/php_functions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index d038f9e9b9..76bbad6194 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -532,9 +532,9 @@ static const zend_function_entry apache_functions[] = { }; PHP_INI_BEGIN() - STD_PHP_INI_ENTRY("xbithack", "0", PHP_INI_ALL, OnUpdateLong, xbithack, php_apache2_info_struct, php_apache2_info) - STD_PHP_INI_ENTRY("engine", "1", PHP_INI_ALL, OnUpdateLong, engine, php_apache2_info_struct, php_apache2_info) - STD_PHP_INI_ENTRY("last_modified", "0", PHP_INI_ALL, OnUpdateLong, last_modified, php_apache2_info_struct, php_apache2_info) + STD_PHP_INI_ENTRY("xbithack", "0", PHP_INI_ALL, OnUpdateBool, xbithack, php_apache2_info_struct, php_apache2_info) + STD_PHP_INI_ENTRY("engine", "1", PHP_INI_ALL, OnUpdateBool, engine, php_apache2_info_struct, php_apache2_info) + STD_PHP_INI_ENTRY("last_modified", "0", PHP_INI_ALL, OnUpdateBool, last_modified, php_apache2_info_struct, php_apache2_info) PHP_INI_END() static PHP_MINIT_FUNCTION(apache) |