]> granicus.if.org Git - php/commitdiff
OnUpdateInt -> OnUpdateLong.
authorIlia Alshanetsky <iliaa@php.net>
Fri, 7 Mar 2003 13:52:06 +0000 (13:52 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Fri, 7 Mar 2003 13:52:06 +0000 (13:52 +0000)
sapi/apache2handler/php_functions.c

index 6015d2ba777d18cf1e10c9f6b65e1e5571406bea..04f83683f2e7a48b223e7edd4dedcdf6c1f2d2c0 100644 (file)
@@ -469,9 +469,9 @@ static function_entry apache_functions[] = {
 };
 
 PHP_INI_BEGIN()
-       STD_PHP_INI_ENTRY("xbithack",           "0",    PHP_INI_ALL,    OnUpdateInt,    xbithack,       php_apache2_info_struct, php_apache2_info)
-       STD_PHP_INI_ENTRY("engine",             "1",    PHP_INI_ALL,    OnUpdateInt,    engine,         php_apache2_info_struct, php_apache2_info)
-       STD_PHP_INI_ENTRY("last_modified",      "0",    PHP_INI_ALL,    OnUpdateInt,    last_modified,  php_apache2_info_struct, php_apache2_info)
+       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)
 PHP_INI_END()
 
 static PHP_MINIT_FUNCTION(apache)